2024-09-24 15:28:19 +02:00
|
|
|
variable "namespace" {
|
|
|
|
|
description = "namespace"
|
|
|
|
|
sensitive = false
|
|
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "app_name" {
|
|
|
|
|
description = "database name"
|
|
|
|
|
sensitive = false
|
|
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "root_password" {
|
|
|
|
|
description = "root password"
|
|
|
|
|
sensitive = true
|
|
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "app_password" {
|
|
|
|
|
description = "user password"
|
|
|
|
|
sensitive = true
|
|
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-12 15:15:16 +01:00
|
|
|
variable "database_folder" {
|
2024-09-24 15:28:19 +02:00
|
|
|
description = "host storage path"
|
|
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "cron_schedule" {
|
|
|
|
|
description = "Cronjob schedule for data backups"
|
|
|
|
|
default = "* 2 * * *"
|
|
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "retention_days" {
|
|
|
|
|
description = "Backup retention days"
|
|
|
|
|
default = 14
|
|
|
|
|
type = number
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
variable "current_version" {
|
|
|
|
|
description = "version"
|
|
|
|
|
default = "10.7.8"
|
|
|
|
|
type = string
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-12 15:15:16 +01:00
|
|
|
variable "backup_folder" {
|
2024-09-24 15:28:19 +02:00
|
|
|
description = "Backup source location"
|
|
|
|
|
type = string
|
|
|
|
|
}
|