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-abacus-state"
}

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

variable "mysql_db_user" {
  default = "ows-abacus-state"
}

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

variable "secret_name" {
  default = "MYSQL_DB_PASS"
}

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

locals {
  downstream_lambda_functions = [
    "lambda-abacus-adjustment-file-initialize",
    "lambda-abacus-adjustment-file-validation",
  ]
}
