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
+24
View File
@@ -82,3 +82,27 @@ variable "root_ca_key" {
type = string
sensitive = true
}
variable "gitea_lfs_jwt_secret" {
description = "Gitea LFS JWT secret"
type = string
sensitive = true
}
variable "gitea_secret_key" {
description = "Gitea secret key"
type = string
sensitive = true
}
variable "gitea_internal_token" {
description = "Gitea internal token"
type = string
sensitive = true
}
variable "gitea_jwt_secret" {
description = "Gitea JWT secret"
type = string
sensitive = true
}