I have a scaffolding module that I have created to auto-generate some of the files that we need across our environments and projects - it automatically creates the backend file, providers file and variables file.
I have this config that generates a variables file:
resource "local_file" "generated_variables" {
for_each = { for kv in local.distinct_envs_and_regions : "${kv.env}.${kv.region}" => kv }
content = <<EOF
variable "supported_regions" { default = ${jsonencode(distinct([
for region in var.regions :
"rg-${each.value.env}-${var.project}-${region.region_short} = ${region.region_name}"
]
))
} }
variable "region_info" { default = "${each.value.region}" }
variable "project" { default = "${var.project}" }
variable "environment" { default = "${each.value.env}" }
variable "tenant_id" { default = "${var.tenant_id}" }
variable "subscription_id" { default = "${var.subscription_id}" }
variable "common_tags" {
default = {
environment = "${each.value.env}"
project = "${var.project}"
managed_by = "terraform"
}
}
EOF
filename = "../${var.project}-iac/environments/category/${var.environment_category}/${each.value.env}/core/variables_generated.tf"
}
However, I cannot get the supported_regions variable in the format that I need - I need it to look something like this:
variable "supported_regions" {
default = {
rg-prd-adm-suk = "uksouth",
rg-prd-adm-wuk = "ukwest"
}
}
Instead the output looks something like this:
variable "supported_regions" { default = ["rg-prd-adm-suk = uksouth","rg-prd-adm-wuk = ukwest"] }
I am sure I am missing something in the for loop but cannot work out what that is... Any ideas?
EDIT A better solution using string templates
Output:
Full working
main.tf
:This should also do it (note that I had to substitute "=" to ":" in the output of
jsonencode
(which is a string):Output: