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

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

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

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

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

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

variable "team" {
  description = "Datadog team slug"
  default     = "abacus"
}

variable "secret_name" {
  default = "MYSQL_DB_PASS"
}

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

variable "pagerduty_alert_channel" {
  default = "@oncall-abacus"
}

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

variable "teams" {
  type        = set(string)
  description = "A set of Datadog Teams to associate the resources with"
  default     = ["abacus"]
}
