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

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

variable "service_name" {
  default = "store-availability-worker-id-348"
}

variable "scaling_cooldown_period" {
  description = "Scaling cooldown period in seconds"
  default     = 30
}

variable "scale_up_adjustment" {
  description = "Number of tasks to add in response to cloudwatch alarm. Generally, one message is added for each asset type (i.e. wav, flac, mp3_192), so start with 3 as default."
  default     = 3
}

variable "scale_down_adjustment" {
  description = "Number of tasks to remove when alarm is in OK status."
  default     = -1
}

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

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

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