first commit
This commit is contained in:
19
environments/core/variables.tf
Normal file
19
environments/core/variables.tf
Normal file
@@ -0,0 +1,19 @@
|
||||
// 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 = ""
|
||||
}
|
||||
Reference in New Issue
Block a user