talos-hetzner/locals.tf
Stefan Le Breton 586b1343d4 tf code
2024-11-19 22:23:38 +01:00

7 lines
No EOL
228 B
HCL

locals {
# DNS names, subdomain is optional
rel_domain = format("%s%s", var.talos_cluster_name,
var.subdomain == "" ? "" : format(".%s", var.subdomain))
full_domain = format("%s.%s", local.rel_domain, var.dns_zone)
}