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

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

variable "service_name" {
  default = "standalone-frontends"
}

variable "application_family" {
  default = "devops"
}

variable "dns_zones_to_support_for_pullrequests" {
  type        = map
  description = "Zones that pullrequests sites should support"
  default = {
    "qaawal" = {
      domain_name       = "qaawal.com."
      is_zone_private   = false
      validation_method = "DNS"
    }
    "qakollectivenr" = {
      domain_name       = "qakollectivenr.com."
      is_zone_private   = false
      validation_method = "DNS"
    }
    "qaorch_with_dns_validation" = {
      domain_name       = "qaorch.com."
      is_zone_private   = true
      validation_method = "DNS"
    }
  }
}
