variable "environment" {
  type        = string
  description = "Name of environment, e.g. dev, qa, prod"
  default     = "prod"
}

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

variable "notification_endpoints" {
  type        = string
  description = "Endpoints for alerts. Can be email, slack, pagerduty, etc"
  default     = "@slack-devops"
}

variable "escalation_notification_endpoints" {
  type        = string
  description = "Endpoints for escalation alerts. Can be email, slack, pagerdut, etc"
  default     = "@slack-devops"
}
