-
Notifications
You must be signed in to change notification settings - Fork 545
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Add dependency on service enablement. (#387)
* Add dependency on service enablement. Adds a dependency on project services to the output project id and number. This prevents a race for using a robot account based on the project id or number, as the robot accounts can be created only when the service enabling is finished. * Improve formatting * Add binding dependency test to minimal * Ran make generate_docs Co-authored-by: Morgante Pell <[email protected]>
- Loading branch information
Showing
6 changed files
with
45 additions
and
6 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -34,6 +34,10 @@ output "compute_service_account_email" { | |
value = "${module.project-factory.project_number}[email protected]" | ||
} | ||
|
||
output "container_service_account_email" { | ||
value = "service-${module.project-factory.project_number}@container-engine-robot.iam.gserviceaccount.com" | ||
} | ||
|
||
output "group_email" { | ||
value = module.project-factory.group_email | ||
} | ||
|
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