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

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

variable "service_name" {
  default = "daemon-notifications-delivery"
}

variable "application_family" {
  description = "Application family of which this is a component. Used for tagging"
  default     = "osp"
}

variable "notification_endpoints" {
  type    = string
  default = "@slack-notifications"
}

