forked from GoogleCloudPlatform/cloud-foundation-fabric
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoutputs.tf
More file actions
173 lines (159 loc) · 4.46 KB
/
outputs.tf
File metadata and controls
173 lines (159 loc) · 4.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
/**
* Copyright 2025 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
locals {
_outputs_automation_buckets = {
for k, v in local.automation_buckets : v.parent_name => k
}
_outputs_automation_sas = {
for k, v in local.automation_sas : v.parent_name => k...
}
outputs_projects = {
for k, v in local.projects_input : k => {
automation = {
bucket = try(
module.automation-bucket[local._outputs_automation_buckets[k]].name,
null
)
service_accounts = {
for sa in lookup(local._outputs_automation_sas, k, []) :
sa => {
email = module.automation-service-accounts[sa].email
iam_email = module.automation-service-accounts[sa].iam_email
id = module.automation-service-accounts[sa].id
}
}
}
kms_keys = local.projects_kms_keys[k]
number = module.projects[k].number
project_id = module.projects[k].project_id
log_buckets = {
for sk, sv in lookup(v, "log_buckets", {}) :
"${k}/${sk}" => (
module.log-buckets["${k}/${sk}"].id
)
}
pubsub_topics = {
for sk, sv in lookup(v, "pubsub_topics", {}) :
"${k}/${sk}" => (
module.pubsub["${k}/${sk}"].id
)
}
service_accounts = {
for sk, sv in lookup(v, "service_accounts", {}) :
"${k}/${sk}" => {
email = module.service-accounts["${k}/${sk}"].email
iam_email = module.service-accounts["${k}/${sk}"].iam_email
id = module.service-accounts["${k}/${sk}"].id
}
}
storage_buckets = {
for sk, sv in lookup(v, "buckets", {}) :
"${k}/${sk}" => (
module.buckets["${k}/${sk}"].name
)
}
workload_identity_pools = (
module.projects[k].workload_identity_pool_ids
)
workload_identity_providers = (
module.projects[k].workload_identity_providers
)
}
}
outputs_service_accounts = merge(
merge([
for k, v in local.outputs_projects : v.service_accounts
]...),
{
for k, v in module.automation-service-accounts : k => {
email = v.email
iam_email = v.iam_email
id = v.id
}
}
)
}
output "folder_ids" {
description = "Folder ids."
value = local.folder_ids
}
output "iam_principals" {
description = "IAM principals mappings."
value = local.iam_principals
}
output "kms_keys" {
description = "KMS key ids."
value = local.kms_keys
}
output "log_buckets" {
description = "Log bucket ids."
value = merge([
for k, v in local.outputs_projects : v.log_buckets
]...)
}
output "project_ids" {
description = "Project ids."
value = local.project_ids
}
output "project_numbers" {
description = "Project numbers."
value = {
for k, v in local.outputs_projects : k => v.number
}
}
output "projects" {
description = "Project attributes."
value = local.outputs_projects
}
output "pubsub_topics" {
description = "PubSub topic ids."
value = merge([
for k, v in local.outputs_projects : v.pubsub_topics
]...)
}
output "service_account_emails" {
description = "Service account emails."
value = {
for k, v in local.outputs_service_accounts : k => v.email
}
}
output "service_account_iam_emails" {
description = "Service account IAM-format emails."
value = {
for k, v in local.outputs_service_accounts : k => v.iam_email
}
}
output "service_account_ids" {
description = "Service account IDs."
value = {
for k, v in local.outputs_service_accounts : k => v.id
}
}
output "service_accounts" {
description = "Service account emails."
value = local.outputs_service_accounts
}
output "storage_buckets" {
description = "Bucket names."
value = merge(
merge([
for k, v in local.outputs_projects : v.storage_buckets
]...),
{
for k, v in module.automation-bucket : k => v.name
}
)
}