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

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

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

variable "project_id" {
  description = "The GCP project id."
  default     = "delphi-prod"
}

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

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