variable "application_family" {
  default = "assets"
}

variable "team_name" {
  type        = string
  description = "Name of team that owns the service"
  default     = "content-delivery-asset-management"
}

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-transcoding"
}

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

variable "db_name" {
  default = "ows_transcoding"
}

variable "db_user" {
  default = "ows_transcoding"
}

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

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

variable "UWSGI_CHEAPER_RSS_LIMIT_SOFT_GB" {
  description = "Memory high-level to stop creating workers, in gigabytes"
  default     = 1.5
}
