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     = "shared"
}

variable "domain_name" {
  description = "Name of domain"
  default     = "shared.theorchard.io"
}

variable "subdomains" {
  type        = set(string)
  description = "List of subdomains"
  default = [
    "box.shared.theorchard.io",
  ]
}
