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

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

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

variable "service_name" {
  default = "ows-royalties-workflows"
}

variable "notification_endpoints" {
  default     = "@slack-abacus-monitoring-qa"
  description = "Datadog notification endpoints for alerts"
}

variable "team_name" {
  type        = string
  description = "Datadog team to associate the resources with"
  default     = "abacus"
}
