Skip to content

Commit

Permalink
udpated formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
tedkahwaji committed Oct 9, 2024
1 parent 95ce645 commit df57137
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions docs/resources/integration_gcp.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ This resource is deprecated—use the `datadog_integration_gcp_sts` resource ins
```terraform
# Create a new Datadog - Google Cloud Platform integration
resource "datadog_integration_gcp" "awesome_gcp_project_integration" {
project_id = "awesome-project-id"
private_key_id = "1234567890123456789012345678901234567890"
private_key = "-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n"
client_email = "awesome-service-account@awesome-project-id.iam.gserviceaccount.com"
client_id = "123456789012345678901"
host_filters = "foo:bar,buzz:lightyear"
project_id = "awesome-project-id"
private_key_id = "1234567890123456789012345678901234567890"
private_key = "-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n"
client_email = "awesome-service-account@awesome-project-id.iam.gserviceaccount.com"
client_id = "123456789012345678901"
host_filters = "foo:bar,buzz:lightyear"
cloud_run_revision_filters = ["filter_one", "filter_two"]
}
Expand Down
8 changes: 4 additions & 4 deletions docs/resources/integration_gcp_sts.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ resource "google_service_account_iam_member" "sa_iam" {
}
resource "datadog_integration_gcp_sts" "foo" {
client_email = google_service_account.datadog_integration.email
host_filters = ["filter_one", "filter_two"]
client_email = google_service_account.datadog_integration.email
host_filters = ["filter_one", "filter_two"]
cloud_run_revision_filters = ["filter_one", "filter_two"]
automute = true
is_cspm_enabled = false
automute = true
is_cspm_enabled = false
}
```

Expand Down

0 comments on commit df57137

Please sign in to comment.