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-carveouts-python"
}

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

variable "notification_endpoints" {
  description = "Endpoints for alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = "@slack-content-delivery-and-asset-mgmt-alerts"
}

variable "escalation_notification_endpoints" {
  description = "Endpoints for escalation alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = "@slack-content-delivery-and-asset-mgmt-alerts"
}

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

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

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

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

variable "cpu_time_window" {
  description = "Time window for CPU utilization evaluation"
  default     = "last_30m"
}

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

variable "ar_dbname" {
  default = "art_relations"
}

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

variable "ar_port" {
  default = "3306"
}

variable "ar_user" {
  default = "ows-carveouts"
}

variable "ar_mysql_charset" {
  default = "utf8mb4"
}

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