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 "critical_threshold_number" {
  type        = number
  description = "Average number of kinesis data below which the monitor will trigger"
  default     = 100
}

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

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