variable "aws_region" {
  default     = "us-east-1"
  description = "Fargate AWS region"
}

variable "environment" {
  description = "Available values:  dev, qa, prod"
  default     = "prod"
}

variable "service_name" {
  default = "daemon-sales-sheets"
}

variable "ar_mysql_database" {
  default = "art_relations"
}

variable "ar_mysql_host" {
  default = "ar-db.theorchard.com"
}

variable "ar_mysql_port" {
  default = "3306"
}

variable "ar_mysql_user" {
  default = "sales-sheets"
}

variable "bulk_sales_sheets" {
  default = "1"
}

variable "image_base_url" {
  default = "https://images.theorchard.com"
}

variable "ss_mysql_database" {
  default = "salessheets"
}

variable "ss_mysql_host" {
  default = "prod-ows-salessheets.cluster-cb22xqmk0y0q.us-east-1.rds.amazonaws.com"
}

variable "ss_mysql_port" {
  default = "3306"
}

variable "ss_mysql_user" {
  default = "daem-salessheets"
}

variable "application_family" {
  default     = "product-builder"
  description = "Application family to which daemon-sales-sheets belongs"
}

variable "secrets_manager_secret_names" {
  type = list(string)
  default = [
    "AR_MYSQL_PASSWORD",
    "SS_MYSQL_PASSWORD",
  ]
}

variable "application_alert_channel" {
  default = "@slack-content-creation-mgmt-alerts"
}
