Files
base-infra/dns/variables.tf

20 lines
250 B
HCL

variable "zone" {
type = string
}
variable "zone_ttl" {
type = number
default = 3600
}
variable "records" {
type = set(object({
name = string
value = string
type = string
ttl = optional(number, 3600)
}))
default = []
}