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

variable "application_family" {
  default = "accounting"
}

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

variable "service_name" {
  default = "ows-abacus-schedule"
}

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

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

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

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

variable "dependent_applications" {
  default = ["royalties", "abacus"]
}
