feat(gitea): refactor configuration to use structured app_config and add TLS support

This commit is contained in:
2025-05-09 22:21:33 +02:00
parent 9de7d52192
commit 17a54f6792
13 changed files with 487 additions and 206 deletions
+12
View File
@@ -49,3 +49,15 @@ variable "backup_folder" {
description = "Backup source location"
type = string
}
variable "tls_enabled" {
description = "Enable SSL for MariaDB"
default = false
type = bool
}
variable "issuer" {
description = "Issuer for SSL certificate"
default = "internal-ca"
type = string
}