26 lines
669 B
HCL
26 lines
669 B
HCL
variable "domain_zone_id" {
|
|
description = "Cloudflare Zone ID for the target domain."
|
|
type = string
|
|
}
|
|
|
|
variable "domain_name" {
|
|
description = "Root domain name (e.g. 'example.com')."
|
|
type = string
|
|
}
|
|
|
|
variable "pangolin-proxy-v4" {
|
|
description = "IPv4 address of the Pangolin reverse-proxy."
|
|
type = string
|
|
}
|
|
|
|
variable "pangolin-proxy-v6" {
|
|
description = "IPv6 address of the Pangolin reverse-proxy."
|
|
type = string
|
|
}
|
|
|
|
variable "cdn_subdomains" {
|
|
description = "Subdomains to serve through Cloudflare proxy (CDN). These get proxied A/AAAA records that override the wildcard."
|
|
type = list(string)
|
|
default = []
|
|
}
|