Skip to content

Commit

Permalink
tf format
Browse files Browse the repository at this point in the history
  • Loading branch information
tedkahwaji committed Oct 9, 2024
1 parent 37fd11a commit 95ce645
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions examples/resources/datadog_integration_gcp/resource.tf
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# 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 examples/resources/datadog_integration_gcp_sts/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ 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
}

0 comments on commit 95ce645

Please sign in to comment.