Skip to content

Commit

Permalink
remove default type for set
Browse files Browse the repository at this point in the history
  • Loading branch information
tedkahwaji committed Oct 9, 2024
1 parent a18a644 commit eb8b28e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions datadog/fwprovider/resource_datadog_integration_gcp.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"sync"

"github.com/hashicorp/terraform-plugin-framework/resource/schema/booldefault"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/setdefault"
"github.com/hashicorp/terraform-plugin-framework/resource/schema/stringdefault"

"github.com/DataDog/datadog-api-client-go/v2/api/datadogV1"
Expand Down Expand Up @@ -118,7 +117,7 @@ func (r *integrationGcpResource) Schema(_ context.Context, _ resource.SchemaRequ
Description: "Tags to filter which Cloud Run revisions are imported into Datadog. Only revisions that meet specified criteria are monitored.",
Optional: true,
Computed: true,
Default: setdefault.StaticValue(types.Set{}),
ElementType: types.StringType,
},
"automute": schema.BoolAttribute{
Description: "Silence monitors for expected GCE instance shutdowns.",
Expand Down

0 comments on commit eb8b28e

Please sign in to comment.