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

variable "application_family" {
  default     = "accounting"
  description = "Application family to which legacy accounting belongs"
}

variable "team_name" {
  description = "Team responsible for ows-accounting"
  type        = string
  default     = "abacus"
}

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

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

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

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

variable "application_alert_channel" {
  default = "@slack-accounting-tech"
}

variable "dependent_applications" {
  description = "List of dependent applications"
  type        = list(string)
  default     = ["collaborator-suite", "abacus", "moneyhub", "workstation", "oa"]
}
