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

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

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

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

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

variable "splitio_preforked" {
  default = "false"
}

variable "secrets_manager_secret_names" {
  description = "List of secrets manager secrets to create"
  type        = list(string)
  default = [
    "AUTOMATION_QA_DB_PASS",
  ]
}

variable "application_alert_channel" {
  description = "Endpoints for escalation alerts. Can be email, slack, pagerduty, etc"
  default     = ""
}
