Files
IaC-DNS-powerdns/variables.tf

24 lines
451 B
Terraform
Raw Normal View History

2026-01-16 16:13:50 +04:00
variable "POWERDNS_API_TOKEN" {
description = "POWERDNS_API_TOKEN"
type = string
sensitive = true
}
variable "POWERDNS_API_URL" {
description = "POWERDNS_API_TOKEN"
type = string
sensitive = true
}
variable "zone-records" {
description = "Parametrs lxc"
type = list(object({
zone = string,
name = string,
type = string,
ttl = number,
record = list(string)
})
)
}