Files
homelab-iac/modules/dns/variables.tf

22 lines
400 B
HCL

variable "domain_zone_id" {
type = string
}
variable "domain_name" {
type = string
}
variable "pangolin-proxy-v4" {
type = string
}
variable "pangolin-proxy-v6" {
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 = []
}