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

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

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

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

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

variable "services" {
  description = "List of ECS REST API service and corresponding framework to monitor"
  default = {
    "artistapp-api" : "koa"
    "artistapp-atlas-auth-proxy" : "flask"
    "artistapp-user-preferences" : "express"
  }
}
