-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d12011f
commit c8464f2
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 = "%[email protected]" | ||
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 = "%[email protected]" | ||
client_id = "123456789012345678901" | ||
host_filters = "foo:bar,buzz:lightyear" | ||
cloud_run_revision_filters = ["tag:one", "tag:two"] | ||
}`, uniq, uniq) | ||
} | ||
|
||
|