variable "aws_region" {
  default = "us-east-1"
}

variable "route53_zone_name" {
  type        = string
  description = "The name of the Route 53 zone"
  default     = "theorchard.io"
}

variable "environment" {
  type        = string
  description = "The environment"
  default     = "prod"
}

variable "application_family" {
  type        = string
  description = "The application family"
  default     = "devops"
}

variable "cname_records" {
  type = map(object({
    records = list(string)
  }))
  default = {}
}

variable "acm_dns_validation_records" {
  description = "DNS records used for ACM validation of *.theorchard.io certificates in additional AWS accounts"
  type = map(object({
    records = list(string)
  }))
  default = {}
}
