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" {
  description = "Service name, without environment prefix"
  default     = "atlas"
}

variable "name_prefix" {
  description = "The name prefix."
  default     = "prod-core"
}

variable "account_alias" {
  description = "The AWS Account alias."
  default     = "gdb-core-prod"
}

variable "ecs_cluster" {
  description = "The ECS cluster to monitor."
  default     = "prod-core-clu"
}

variable "slack_channel" {
  description = "The slack channel for the notifications."
  default     = "@slack-The_Orchard-core-datadog-alerts"
}

variable "services" {
  description = "List of ECS REST API service and corresponding framework to monitor"
  default = {
    "core-images-api" : "django"
    "core-atlas-auth-proxy" : "flask"
    "core-auth-api" : "flask"
    "core-atlas-um" : "flask"
  }
}
