Skip to content

Commit ffce27b

Browse files
committed
initialize workflows api service identity
1 parent 29cbefd commit ffce27b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

0-bootstrap/cb.tf

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,15 @@ module "tf_source" {
137137
depends_on = [module.seed_bootstrap]
138138
}
139139

140+
resource "google_project_service_identity" "workflows_identity" {
141+
provider = google-beta
142+
143+
project = module.tf_source.cloudbuild_project_id
144+
service = "workflows.googleapis.com"
145+
146+
depends_on = [module.tf_source]
147+
}
148+
140149
module "tf_private_pool" {
141150
source = "./modules/cb-private-pool"
142151

0 commit comments

Comments
 (0)