# ------------------------------------------------------------------------------ # 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 = {} }