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     = "prod"
}

variable "service_name" {
  default = "ows-product-configuration"
}

variable "application_family" {
  default = "vector"
}

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

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

variable "critical_number_5xx" {
  description = "Number of 5xx requests (per 5m) for critical alerts"
  default     = 5
}

variable "critical_recovery_number_5xx" {
  description = "Number of 5xx requests (per 5m) for critical recovery"
  default     = 2
}

variable "warning_number_5xx" {
  description = "Number of 5xx requests (per 5m) for warnings"
  default     = 2
}

variable "warning_recovery_number_5xx" {
  description = "Number of 5xx requests (per 5m) for warning recovery"
  default     = 0
}

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

variable "healthy_tasks_notification_endpoints" {
  default = "@oncall-content-delivery-asset-management"
}

variable "dependent_applications" {
  default = ["workstation"]
}

variable "mysql_user" {
  default = "ows-product-conf"
}

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

variable "mysql_database" {
  default = "art_relations"
}
