Files
Hrankin, Aleksandr (contracted) f243f440c3 init
2026-02-19 11:34:13 +00:00

24 lines
396 B
HCL

variable "pdns_server_url" {
type = string
}
variable "pdns_api_key" {
type = string
sensitive = true
}
variable "zones" {
type = map(object({
zone_kind = string
soa_edit_api = string
zone_nameservers = list(string)
records = map(object({
name = string
type = string
ttl = number
records = list(string)
}))
}))
}