10 lines
201 B
Terraform
10 lines
201 B
Terraform
|
variable "dns_zone" {
|
||
|
description = "The dns zone"
|
||
|
type = string
|
||
|
}
|
||
|
|
||
|
variable "dns_records" {
|
||
|
description = "A map containing the dns record configuration"
|
||
|
type = list(map(any))
|
||
|
}
|