add support for service agent expansion to project factory IAM (#3112)

This commit is contained in:
Ludovico Magnocavallo
2025-05-24 12:33:20 +02:00
committed by GitHub
parent ddfc88ffed
commit 7ce4381ac3
6 changed files with 34 additions and 7 deletions

View File

@@ -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 -->

View File

@@ -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
}
}
}