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

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

variable "application_family" {
  default = "sound-recordings"
}

variable "domain_name" {
  default = "conflict-manager-os"
}

variable "outbound_domain" {
  default = "conflict-manager01"
}

variable "notification_endpoints" {
  default = "@slack-conflict-manager-alerts"
}

variable "escalation_notification_endpoints" {
  default = "@slack-conflict-manager-alerts"
}

