24 lines
451 B
HCL
24 lines
451 B
HCL
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)
|
|
})
|
|
)
|
|
}
|