Skip to content

Commit 17888fb

Browse files
Fix syntax errors to get tests to pass
1 parent a693e81 commit 17888fb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mmv1/third_party/terraform/services/iam3/resource_iam3_principal_access_boundary_policy_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -64,15 +64,15 @@ resource "google_project" "project" {
6464
}
6565
6666
resource "google_iam3_principal_access_boundary_policy" "my-pab-policy" {
67-
organization = "${org_id}"
67+
organization = "%{org_id}"
6868
location = "global"
6969
display_name = "test pab policy%{random_suffix}"
7070
principal_access_boundary_policy_id = "test-pab-policy%{random_suffix}"
7171
details {
7272
rules {
7373
description = "PAB rule%{random_suffix}"
74-
effect = allow
75-
resources = [//cloudresourcemanager.googleapis.com/projects/${google_project.project.project_id}"]
74+
effect = "ALLOW"
75+
resources = ["//cloudresourcemanager.googleapis.com/projects/${google_project.project.project_id}"]
7676
}
7777
enforcement_version = "1"
7878
}

0 commit comments

Comments
 (0)