variable "aws_region" {
  default     = "us-east-1"
  description = "Name of a region"
}

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

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

variable "dd_patch_modules" {
  default = "futures:true,httplib:true,sqlalchemy:true"
}

variable "application_family" {
  default = "product-builder"
}
variable "notification_endpoints" {
  description = "Endpoints for alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = "@slack-The_Orchard-content-creation-mgmt-alerts"
}

variable "escalation_notification_endpoints" {
  description = "Endpoints for escalation alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = "@slack-The_Orchard-content-creation-mgmt-alerts"
}
variable "splitio_preforked" {
  default = "false"
}

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

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

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

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

variable "dependent_applications" {
  default = ["oa", "workstation", "moneyhub", "collaborator-suite", "insights", "content",
  "songwip", "royalties"]
}
