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

variable "application_family" {
  type        = string
  description = "The name of the application family."
  default     = "app-family"
}

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

variable "service_name" {
  type        = string
  description = "The name of the service."
  default     = "worker-example"
}

variable "notification_endpoints" {
  type        = string
  description = "Endpoints for datadog notifications"
  default     = "@slack-squad-channel"
}

