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-royalties-workflows"
}

variable "bucket_name" {
  default = "royalties-sales-files"
}

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

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

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