terracadoles/modules/cadolesDNS/variables.tf
Philippe Caseiro 2185af67c5 feat(module): adding DNS module
This module create entries on a DNS Server with DNSUPDATE.

extracted from "Cadoles Production v2 project"
2023-01-19 14:14:52 +01:00

23 lines
443 B
HCL

variable "dns_domain" {
description = "DNS Domain name (FQDN)"
type = string
default = "cadoles.com."
}
variable "dns_a_records" {
description = "List of dns A records to create"
type = map
default = {}
}
variable "dns_cname_records" {
description = "List of CNAME entires"
type = map
default = {}
}
variable "depends" {
description = "List of output_variables for dependences management"
type = list
default = []
}