Files
homelab-opentofu/environments/core/variables.tf
Yuris Cakranegara cac26957a8 first commit
2025-06-06 12:01:54 +10:00

20 lines
451 B
HCL

// Generic
variable "timezone" {
description = "Timezone for the system"
type = string
}
// Watchtower
variable "watchtower_enable_notifications" {
description = "Enable Watchtower update notifications"
type = bool
default = false
}
variable "watchtower_notification_url" {
description = "Webhook URL for Watchtower notifications (Discord, Slack, etc.)"
type = string
sensitive = true
default = ""
}