variable "aws_region" {
  default     = "us-east-1"
  description = "AWS region"
}

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

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

variable "my_sql_db_host" {
  default = "qa-royalty-accounting-db.theorchard.io"
}

variable "my_sql_db_user" {
  default = "ows-ledger"
}

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

variable "team_name" {
  description = "Datadog team name"
  default     = "abacus"
}

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

variable "notification_endpoints" {
  default = "@slack-abacus-monitoring-qa"
}

variable "UWSGI_WORKERS" {
  default = "50"
}

variable "UWSGI_CHEAPER_RSS_LIMIT_SOFT" {
  default = "3221225472"
}

locals {
  downstream_lambda_functions = [
    "lambda-abacus-adjustment-file-import",
    "lambda-abacus-adjustments-apply",
  ]
}
