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

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

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

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

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

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

variable "secret_name" {
  default = "MYSQL_DB_PASS"
}

# Temporary redirect all notifications
variable "notification_endpoints" {
  default = "@slack-tmp-uat-accounting-alerts"
}
