variable "aws_region" {
  default     = "eu-central-1"
  description = "Which AWS region to spin up the environment in"
}

variable "msk_disk_used_alert_critical" {
  type        = number
  default     = 85
  description = "Critical threshold for MSK disk used percent. 85 means alert when free space is below 15%."
}

variable "msk_cluster_name" {
  type        = string
  default     = "aomap-ameba-msk-01"
  description = "MSK cluster_name tag filter used by AMEBA MSK monitors"
}

variable "msk_cluster_display_name" {
  type        = string
  default     = "aomap-ameba-msk-01"
  description = "MSK cluster name displayed in alert messages"
}

variable "eks_worker_disk_usage_critical" {
  type        = number
  default     = 90
  description = "Critical threshold for EKS worker node disk usage percent."
}

