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 "ar_db_database" {
  default = "art_relations"
}

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

variable "ar_db_port" {
  default = "3306"
}

variable "ar_db_user" {
  default = "ows-marketing"
}

variable "service_name" {
  default = "ows-marketing"
}

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

variable "application_alert_channel" {
  default = ""
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "SENTRY_DSN",
    "DB_URL",
    "AR_DB_PASSWORD",
    "OWS_ACCOUNT_URL",
    "LOGGER_DSN",
  ]
}
