add support for service agent expansion to project factory IAM (#3112)
This commit is contained in:
committed by
GitHub
parent
ddfc88ffed
commit
7ce4381ac3
@@ -373,5 +373,5 @@ The approach is not shown here but reasonably easy to implement. The main projec
|
||||
|---|---|:---:|---|
|
||||
| [buckets](outputs.tf#L31) | Created buckets. | | |
|
||||
| [projects](outputs.tf#L38) | Created projects. | | |
|
||||
| [service_accounts](outputs.tf#L49) | Created service accounts. | | |
|
||||
| [service_accounts](outputs.tf#L50) | Created service accounts. | | |
|
||||
<!-- END TFDOC -->
|
||||
|
||||
@@ -39,9 +39,10 @@ output "projects" {
|
||||
description = "Created projects."
|
||||
value = {
|
||||
for k, v in module.projects.projects : k => {
|
||||
id = v.project_id
|
||||
number = v.number
|
||||
automation = v.automation
|
||||
id = v.project_id
|
||||
number = v.number
|
||||
automation = v.automation
|
||||
service_agents = v.service_agents
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user