mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
19 lines
No EOL
363 B
HCL
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
|
|
} |