variable "backup_vault_name" {
  description = "Name of the backup vault"
  type        = string
}

variable "notification_endpoints" {
  description = "Notification endpoints (e.g., Slack, email, PagerDuty)"
  type        = string
}

variable "critical_threshold" {
  description = "Critical threshold for alerting"
  type        = number
  default     = 1
}

variable "dashboard_enabled" {
  description = "Whether to create a dashboard for backup metrics"
  type        = bool
  default     = true
}
