variable "aws_region" {
  default     = "us-east-1"
  description = "All elements of the state machine execution flow have to be placed in the same region."
}

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

variable "service_name" {
  default = "ows-timed-release"
}

variable "LOGGER_HANDLER_ASYNC" {
  default = "1"
}

variable "RDS_MYSQL_PORT" {
  description = "Most MySQL connections will be to this port, but it's nice to give the option to override"
  default     = "3306"
}

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

variable "secrets_manager_secret_names" {
  type = list(string)
  default = [
    "LOGGER_DSN",
    "RDS_MYSQL_DATABASE",
    "RDS_MYSQL_HOST",
    "RDS_DB_URL",
    "RDS_MYSQL_PASSWORD",
    "RDS_MYSQL_USER",
    "AR_MYSQL_PASSWORD",
  ]
}

variable "notification_endpoints" {
  description = "Endpoints for alerts. Can be email, slack, pagerduty, etc"
  type        = string
  default     = ""
}

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

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