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 = "ows-carveouts-python"
}

variable "application_family" {
  default = "product-builder"
}

variable "application_alert_channel" {
  default = "@slack-content-delivery-and-asset-mgmt-qa-alerts"
}

variable "ar_dbname" {
  default = "art_relations"
}

variable "ar_host" {
  default = "qa.db.qaorch.com"
}

variable "ar_port" {
  default = "3306"
}

variable "ar_user" {
  default = "ows-carveouts"
}

variable "ar_mysql_charset" {
  default = "utf8mb4"
}

variable "secret_names" {
  type = list(string)
  default = [
    "AR_PASS",
  ]
}
