From c8464f2ff306fa448d59d9a00f19d95ecb0d7949 Mon Sep 17 00:00:00 2001 From: Teddy Kahwaji Date: Wed, 9 Oct 2024 14:37:46 -0400 Subject: [PATCH] fixed white space --- .../tests/resource_datadog_integration_gcp_test.go | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/datadog/tests/resource_datadog_integration_gcp_test.go b/datadog/tests/resource_datadog_integration_gcp_test.go index 6b28b79a8..f91430ea2 100644 --- a/datadog/tests/resource_datadog_integration_gcp_test.go +++ b/datadog/tests/resource_datadog_integration_gcp_test.go @@ -14,13 +14,13 @@ import ( func testAccCheckDatadogIntegrationGCPConfig(uniq string) string { return fmt.Sprintf(` resource "datadog_integration_gcp" "awesome_gcp_project_integration" { - project_id = "%s" - private_key_id = "1234567890123456789012345678901234567890" - private_key = "-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n" - client_email = "%s@awesome-project-id.iam.gserviceaccount.com" - client_id = "123456789012345678901" - host_filters = "foo:bar,buzz:lightyear" - cloud_run_revision_filters = ["tag:one", "tag:two"] + project_id = "%s" + private_key_id = "1234567890123456789012345678901234567890" + private_key = "-----BEGIN PRIVATE KEY-----\n...\n-----END PRIVATE KEY-----\n" + client_email = "%s@awesome-project-id.iam.gserviceaccount.com" + client_id = "123456789012345678901" + host_filters = "foo:bar,buzz:lightyear" + cloud_run_revision_filters = ["tag:one", "tag:two"] }`, uniq, uniq) }