ingress/terraform/outputs.tf

5 lines
113 B
HCL

output "nodes" {
value = [
for key, node in local.nodes : replace("${key}.${node.domain}", ".", "-")
]
}