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

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

variable "application_family" {
  default = "data-platform"
}

variable "service_name" {
  default = "kafka-connect"
}

variable "datadog_monitor_enabled" {
  default = true
}

variable "datadog_monitor_ok_threshold" {
  default = 1
}

variable "datadog_monitor_warning_threshold" {
  default = 5
}

variable "datadog_monitor_critical_threshold" {
  default = 15
}

variable "notification_endpoints" {
  default = "@slack-kafka-data-highway-alerts"
}

variable "escalation_notification_endpoints" {
  default = "@slack-data-alarm"
}

variable "additional_tags" {
  type = map(string)
  default = {
    project = "kafka-data-highway"
  }
}
