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

variable "service_name" {
  description = "Service name, without environment prefix"
  default     = "delphi"
}

variable "name_prefix" {
  description = "The name prefixes."
  default     = "qa-delphi"
}

variable "account_alias" {
  description = "The AWS Account alias."
  default     = "gdb-delphi-dev"
}

variable "project_id" {
  description = "The GCP projects id."
  default     = "delphi-qa"
}

variable "ecs_clusters_with_env" {
  description = "List of environments and ECS clusters to monitor."
  default = {
    "qa" : "qa-delphi-clu",
  }
}

variable "slack_channels" {
  description = "The slack channel for the notifications."
  default = {
    "api" : "@slack-The_Orchard-delphi-api-alerts-stage",
    "dapd" : "@slack-The_Orchard-delphi-dapd-alerts-stg",
    "dtf" : "@slack-The_Orchard-delphi-dtf-alerts-nonprod",
    "etl" : "@slack-The_Orchard-apps-etl-alerts",
    "infra" : "@slack-The_Orchard-delphi-infra-alerts-stg",
    "ns" : "@slack-The_Orchard-delphi-ns-alerts-nonprod",
    "outage" : "@slack-The_Orchard-delphi-outage-alerts",
    "slz" : "@slack-The_Orchard-slz-alerts",
  }
}
