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 "service_name" {
  default = "cloudflare-maintenance-pages"
}

variable "orchard_site_list" { 
  description = "List of sites to apply maintenance to"
  type        = set(string)
  default     = [
    # "account360.theorchard.com",
    # "accounting.theorchard.com",
    # "collaborators.theorchard.com",
    # "content.theorchard.com",
    # "distribution.theorchard.com",
    # "documents.theorchard.com",
    # "fansifter.theorchard.com",
    # "insights.theorchard.com",
    # "nr.theorchard.com",
    # "oa.theorchard.com", 
    # "podcast.theorchard.com",
    # "publishing.theorchard.com",
    # "settings.theorchard.com",
    # "workstation.theorchard.com",
  ]
}

  
variable "awal_site_list" { 
  description = "List of sites to apply maintenance to"
  type        = set(string)
  default     = [
    # "accounting.awal.com",
    # "collaborators.awal.com",
    # "documents.awal.com",
    # "fansifter.awal.com",
    # "insights.awal.com",
    # "settings.awal.com",
    # "workstation.awal.com",
  ]
}

variable "knr_site_list" {
  description = "List of sites to apply maintenance to"
  type        = set(string)
  default     = [
    # "accounting.kollectivenr.com",
    # "settings.kollectivenr.com",
  ]
}