variable "aws_region" {
  default     = "us-east-1"
  description = "Which AWS region to spin up the environment in"
}

variable "environment" {
  description = "Available values:  dev, qa, prod."
  default     = "prod"
}

variable "domain_name" {
  description = "Name of domain"
  default     = "prod-youtube-audit.theorchard.io"
}

variable "cname_records" {
  type = map(object({
    records = list(string)
  }))
  default = {
    "auth.prod-youtube-audit.theorchard.io" = {
      records = ["prod-orch-youtube-cd-1iq5gcsdzdduxjej.edge.tenants.us.auth0.com"]
    },
  }
}
