-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make iam members case insensitive (#1957)
Merged PR #1957.
- Loading branch information
1 parent
a9aa31d
commit e9348b5
Showing
6 changed files
with
22 additions
and
13 deletions.
There are no files selected for viewing
Submodule terraform
updated
from 51a532 to de903b
Submodule terraform-beta
updated
from 9edf00 to 02e48b
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 |
---|---|---|
|
@@ -130,7 +130,7 @@ func testAccComputeInstanceIamMember_basic(zone, instanceName, roleId string) st | |
zone = "${google_compute_instance.test_vm.zone}" | ||
instance_name = "${google_compute_instance.test_vm.name}" | ||
role = "%s" | ||
member = "user:admin@hashicorptest.com" | ||
member = "user:Admin@hashicorptest.com" | ||
} | ||
`, zone, instanceName, roleId) | ||
|
@@ -157,7 +157,7 @@ func testAccComputeInstanceIamPolicy_basic(zone, instanceName, roleId string) st | |
data "google_iam_policy" "foo" { | ||
binding { | ||
role = "%s" | ||
members = ["user:admin@hashicorptest.com"] | ||
members = ["user:Admin@hashicorptest.com"] | ||
} | ||
} | ||
|
@@ -194,7 +194,7 @@ func testAccComputeInstanceIamBinding_basic(zone, instanceName, roleId string) s | |
zone = "${google_compute_instance.test_vm.zone}" | ||
instance_name = "${google_compute_instance.test_vm.name}" | ||
role = "%s" | ||
members = ["user:admin@hashicorptest.com"] | ||
members = ["user:Admin@hashicorptest.com"] | ||
} | ||
`, zone, instanceName, roleId) | ||
|
@@ -223,7 +223,7 @@ func testAccComputeInstanceIamBinding_update(zone, instanceName, roleId string) | |
zone = "${google_compute_instance.test_vm.zone}" | ||
instance_name = "${google_compute_instance.test_vm.name}" | ||
role = "%s" | ||
members = ["user:admin@hashicorptest.com", "user:[email protected]"] | ||
members = ["user:Admin@hashicorptest.com", "user:[email protected]"] | ||
} | ||
`, zone, instanceName, roleId) | ||
|
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
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
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