Files
hunfabric/modules/project-factory/automation.tf
2025-04-18 15:42:45 +02:00

155 lines
5.3 KiB
HCL

/**
* Copyright 2024 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.
*/
# tfdoc:file:description Automation projects locals and resources.
locals {
automation_buckets = {
for k, v in local.projects :
k => merge(try(v.automation.bucket, {}), {
automation_project = v.automation.project
prefix = v.prefix
project_name = v.name
}) if try(v.automation.bucket, null) != null
}
automation_sa = flatten([
for k, v in local.projects : [
for ks, kv in try(v.automation.service_accounts, {}) : merge(kv, {
automation_project = v.automation.project
name = ks
prefix = v.prefix
project = k
project_name = v.name
})
]
])
}
module "automation-bucket" {
source = "../gcs"
for_each = local.automation_buckets
# we cannot use interpolation here as we would get a cycle
# from the IAM dependency in the outputs of the main project
project_id = each.value.automation_project
prefix = each.value.prefix
name = "${each.value.project_name}-tf-state"
encryption_key = lookup(each.value, "encryption_key", null)
iam = {
for k, v in lookup(each.value, "iam", {}) : k => [
for vv in v : try(
module.automation-service-accounts["${each.key}/${vv}"].iam_email,
var.factories_config.context.iam_principals[vv],
vv
)
]
}
iam_bindings = {
for k, v in lookup(each.value, "iam_bindings", {}) : k => merge(v, {
members = [
for vv in v.members : try(
# rw (infer local project and automation prefix)
module.automation-service-accounts["${each.key}/automation/${vv}"].iam_email,
# automation/rw or sa (infer local project)
module.automation-service-accounts["${each.key}/${vv}"].iam_email,
# project/automation/rw project/sa
var.factories_config.context.iam_principals[vv],
# fully specified principal
vv,
# passthrough + error handling using tonumber until Terraform gets fail/raise function
(
strcontains(vv, ":")
? vv
: tonumber("[Error] Invalid member: '${vv}' in automation bucket '${each.key}'")
)
)
]
})
}
iam_bindings_additive = {
for k, v in lookup(each.value, "iam_bindings_additive", {}) : k => merge(v, {
member = try(
module.automation-service-accounts["${each.key}/${v.member}"].iam_email,
var.factories_config.context.iam_principals[v.member],
v.member
)
})
}
labels = lookup(each.value, "labels", {})
location = coalesce(
var.data_overrides.storage_location,
lookup(each.value, "location", null),
var.data_defaults.storage_location
)
storage_class = lookup(
each.value, "storage_class", "STANDARD"
)
uniform_bucket_level_access = lookup(
each.value, "uniform_bucket_level_access", true
)
versioning = lookup(
each.value, "versioning", false
)
}
module "automation-service-accounts" {
source = "../iam-service-account"
for_each = {
for k in local.automation_sa : "${k.project}/automation/${k.name}" => k
}
# we cannot use interpolation here as we would get a cycle
# from the IAM dependency in the outputs of the main project
project_id = each.value.automation_project
prefix = each.value.prefix
name = "${each.value.project_name}-${each.value.name}"
description = lookup(each.value, "description", null)
display_name = lookup(
each.value,
"display_name",
"Service account ${each.value.name} for ${each.value.project}."
)
# TODO: also support short form for service accounts in this project
iam = {
for k, v in lookup(each.value, "iam", {}) : k => [
for vv in v : lookup(
var.factories_config.context.iam_principals, vv, vv
)
]
}
iam_bindings = {
for k, v in lookup(each.value, "iam_bindings", {}) : k => merge(v, {
members = [
for vv in v.members : lookup(
var.factories_config.context.iam_principals, vv, vv
)
]
})
}
iam_bindings_additive = {
for k, v in lookup(each.value, "iam_bindings_additive", {}) : k => merge(v, {
member = lookup(
var.factories_config.context.iam_principals, v.member, v.member
)
})
}
iam_billing_roles = lookup(each.value, "iam_billing_roles", {})
iam_folder_roles = lookup(each.value, "iam_folder_roles", {})
iam_organization_roles = lookup(each.value, "iam_organization_roles", {})
iam_project_roles = lookup(each.value, "iam_project_roles", {})
iam_sa_roles = lookup(each.value, "iam_sa_roles", {})
# we don't interpolate buckets here as we can't use a dynamic key
iam_storage_roles = lookup(each.value, "iam_storage_roles", {})
}