Skip to content

Commit

Permalink
[datadog_integration_gcp_sts] Update tf cspm doc defaults and descrip…
Browse files Browse the repository at this point in the history
…tion (#2104)
  • Loading branch information
dtru-ddog authored Sep 19, 2023
1 parent 0555112 commit add0ae9
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion datadog/fwprovider/resource_datadog_integration_gcp_sts.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ func (r *integrationGcpStsResource) Schema(_ context.Context, _ resource.SchemaR
"is_cspm_enabled": schema.BoolAttribute{
Optional: true,
Computed: true,
Description: "When enabled, Datadog performs configuration checks across your Google Cloud environment by continuously scanning every resource.",
Description: "When enabled, Datadog performs configuration checks across your Google Cloud environment by continuously scanning every resource, which may incur additional charges.",
},
"host_filters": schema.SetAttribute{
Optional: true,
Expand Down
4 changes: 2 additions & 2 deletions docs/resources/integration_gcp_sts.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ resource "datadog_integration_gcp_sts" "foo" {
client_email = google_service_account.datadog_integration.email
host_filters = ["filter_one", "filter_two"]
automute = true
is_cspm_enabled = true
is_cspm_enabled = false
}
```

Expand All @@ -48,7 +48,7 @@ resource "datadog_integration_gcp_sts" "foo" {

- `automute` (Boolean) Silence monitors for expected GCE instance shutdowns.
- `host_filters` (Set of String) Your Host Filters.
- `is_cspm_enabled` (Boolean) When enabled, Datadog performs configuration checks across your Google Cloud environment by continuously scanning every resource.
- `is_cspm_enabled` (Boolean) When enabled, Datadog performs configuration checks across your Google Cloud environment by continuously scanning every resource, which may incur additional charges.

### Read-Only

Expand Down
4 changes: 2 additions & 2 deletions examples/resources/datadog_integration_gcp_sts/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ resource "datadog_integration_gcp_sts" "foo" {
client_email = google_service_account.datadog_integration.email
host_filters = ["filter_one", "filter_two"]
automute = true
is_cspm_enabled = true
}
is_cspm_enabled = false
}

0 comments on commit add0ae9

Please sign in to comment.