Skip to content

Commit

Permalink
Use tabs in resource config instead of spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
mrparkers committed Oct 26, 2017
1 parent 2791c74 commit 248d518
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions google/resource_kms_key_ring_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -156,17 +156,17 @@ func testAccCheckGoogleKmsKeyRingWasRemovedFromState(resourceName string) resour
func testGoogleKmsKeyRing_basic(projectId, projectOrg, projectBillingAccount, keyRingName string) string {
return fmt.Sprintf(`
resource "google_project" "acceptance" {
name = "%s"
project_id = "%s"
org_id = "%s"
billing_account = "%s"
name = "%s"
project_id = "%s"
org_id = "%s"
billing_account = "%s"
}
resource "google_project_services" "acceptance" {
project = "${google_project.acceptance.project_id}"
services = [
"cloudkms.googleapis.com"
]
project = "${google_project.acceptance.project_id}"
services = [
"cloudkms.googleapis.com"
]
}
resource "google_kms_key_ring" "key_ring" {
Expand All @@ -180,17 +180,17 @@ resource "google_kms_key_ring" "key_ring" {
func testGoogleKmsKeyRing_removed(projectId, projectOrg, projectBillingAccount string) string {
return fmt.Sprintf(`
resource "google_project" "acceptance" {
name = "%s"
project_id = "%s"
org_id = "%s"
billing_account = "%s"
name = "%s"
project_id = "%s"
org_id = "%s"
billing_account = "%s"
}
resource "google_project_services" "acceptance" {
project = "${google_project.acceptance.project_id}"
services = [
"cloudkms.googleapis.com"
]
project = "${google_project.acceptance.project_id}"
services = [
"cloudkms.googleapis.com"
]
}
`, projectId, projectId, projectOrg, projectBillingAccount)
}

0 comments on commit 248d518

Please sign in to comment.