23 lines
443 B
Terraform
23 lines
443 B
Terraform
|
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 = []
|
||
|
}
|