Merge branch 'master' into fast-dev

This commit is contained in:
Julio Castillo
2024-11-17 22:01:21 +01:00
6 changed files with 53 additions and 18 deletions

View File

@@ -367,5 +367,5 @@ The approach is not shown here but reasonably easy to implement. The main projec
| name | description | sensitive | consumers |
|---|---|:---:|---|
| [projects](outputs.tf#L17) | Created projects. | | |
| [service_accounts](outputs.tf#L27) | Created service accounts. | | |
| [service_accounts](outputs.tf#L22) | Created service accounts. | | |
<!-- END TFDOC -->

View File

@@ -16,12 +16,7 @@
output "projects" {
description = "Created projects."
value = {
for k, v in module.projects.projects : k => {
number = v.number
project_id = v.id
}
}
value = module.projects.projects
}
output "service_accounts" {