File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
mmv1/third_party/terraform/services/resourcemanager Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -102,19 +102,17 @@ data "google_service_accounts" "with_prefix" {
102102
103103data "google_service_accounts" "with_regex" {
104104 project = local.project_id
105- regex = ".*%s .*@.*\\.gserviceaccount\\.com"
105+ regex = ".*${google_service_account.sa_one.account_id} .*@.*\\.gserviceaccount\\.com"
106106}
107107
108108data "google_service_accounts" "with_prefix_and_regex" {
109109 prefix = google_service_account.sa_one.account_id
110110 project = local.project_id
111- regex = ".*%s .*@.*\\.gserviceaccount\\.com"
111+ regex = ".*${google_service_account.sa_one.account_id} .*@.*\\.gserviceaccount\\.com"
112112}
113113` ,
114114 context ["project" ].(string ),
115115 context ["sa_1" ].(string ),
116116 context ["sa_2" ].(string ),
117- context ["sa_1" ].(string ),
118- context ["sa_1" ].(string ),
119117 )
120118}
You can’t perform that action at this time.
0 commit comments