2025-06-09 23:49:43 +02:00
|
|
|
variable "nextcloud_db_passwd" {
|
|
|
|
|
description = "Password for the Nextcloud database"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
2025-06-05 23:27:50 +02:00
|
|
|
|
2025-06-09 23:49:43 +02:00
|
|
|
variable "nextcloud_db_root_password" {
|
|
|
|
|
description = "Root password for the Nextcloud database"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "nextcloud_admin_password" {
|
|
|
|
|
description = "Password for the Nextcloud admin user"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
2025-10-04 18:05:10 +02:00
|
|
|
|
|
|
|
|
variable "telegram_bot_token" {
|
|
|
|
|
description = "Telegram bot token for Alertmanager notifications"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
2025-12-25 16:37:05 +01:00
|
|
|
|
|
|
|
|
variable "webui_secret_key" {
|
|
|
|
|
description = "The secret key for WEBUI"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
2026-05-20 20:58:02 +02:00
|
|
|
|
|
|
|
|
variable "searxng_secret_key" {
|
|
|
|
|
description = "The secret key for SearXNG"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|
2026-05-29 23:42:14 +02:00
|
|
|
|
|
|
|
|
variable "vaultwarden_admin_token" {
|
|
|
|
|
description = "The admin token for VaultWarden"
|
|
|
|
|
type = string
|
|
|
|
|
sensitive = true
|
|
|
|
|
}
|