infrastructure/tf/tunnel/records.tf

19 lines
No EOL
363 B
HCL

variable "zone_id" {
type = string
sensitive = false
}
variable "subdomains" {
type = list(string)
sensitive = false
}
resource "cloudflare_record" "records" {
for_each = toset(var.subdomains)
name = each.value
proxied = true
ttl = 1
type = "CNAME"
value = cloudflare_tunnel.tunnel.cname
zone_id = var.zone_id
}