init
This commit is contained in:
23
terraform/stacks/powerdns/variables.tf
Normal file
23
terraform/stacks/powerdns/variables.tf
Normal file
@@ -0,0 +1,23 @@
|
||||
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)
|
||||
}))
|
||||
}))
|
||||
}
|
||||
Reference in New Issue
Block a user