24 lines
567 B
Terraform
24 lines
567 B
Terraform
variable "nextcloud_db_passwd" {
|
|
description = "Password for the Nextcloud database"
|
|
type = string
|
|
sensitive = true
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
variable "telegram_bot_token" {
|
|
description = "Telegram bot token for Alertmanager notifications"
|
|
type = string
|
|
sensitive = true
|
|
}
|