Skip to content

Commit 6ef6c57

Browse files
fix syntax in examples (#5731) (#11155)
Signed-off-by: Modular Magician <[email protected]>
1 parent 39cbfaf commit 6ef6c57

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.changelog/5731.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
```release-note:none
2+
```

website/docs/r/google_service_account_iam.html.markdown

+2-2
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ resource "google_service_account" "sa" {
7272
}
7373
7474
resource "google_service_account_iam_binding" "admin-account-iam" {
75-
service_account_id = "${google_service_account.sa.name}"
75+
service_account_id = google_service_account.sa.name
7676
role = "roles/iam.serviceAccountUser"
7777
7878
members = [
@@ -121,7 +121,7 @@ resource "google_service_account" "sa" {
121121
}
122122
123123
resource "google_service_account_iam_member" "admin-account-iam" {
124-
service_account_id = "${google_service_account.sa.name}"
124+
service_account_id = google_service_account.sa.name
125125
role = "roles/iam.serviceAccountUser"
126126
member = "user:[email protected]"
127127

0 commit comments

Comments
 (0)