21 lines
518 B
HCL
21 lines
518 B
HCL
# ------------------------------------------------------------------------------
|
|
# Amazon Route 53 variables
|
|
# ------------------------------------------------------------------------------
|
|
|
|
variable "zone_name" {
|
|
description = "Name of DNS zone"
|
|
type = string
|
|
}
|
|
|
|
variable "private_zone" {
|
|
description = "Whether Route53 zone is private or public"
|
|
type = bool
|
|
default = false
|
|
}
|
|
|
|
variable "records" {
|
|
description = "List of objects of DNS records"
|
|
type = any
|
|
default = {}
|
|
}
|