add onlyoffice deployment along with collabora for backup if needed [ci skip]

This commit is contained in:
Viktor Barzin 2025-08-17 19:27:34 +00:00
parent 6955a17d6f
commit 3c79ff85b1
5 changed files with 159 additions and 4 deletions

View file

@ -88,6 +88,8 @@ variable "realestate_crawler_notification_settings" {
}
}
variable "kured_notify_url" {}
variable "onlyoffice_db_password" { type = string }
variable "onlyoffice_jwt_token" { type = string }
@ -643,10 +645,12 @@ module "kured" {
notify_url = var.kured_notify_url
}
# module "onlyoffice" {
# source = "./onlyoffice"
# tls_secret_name = var.tls_secret_name
# }
module "onlyoffice" {
source = "./onlyoffice"
tls_secret_name = var.tls_secret_name
db_password = var.onlyoffice_db_password
jwt_token = var.onlyoffice_jwt_token
}
module "forgejo" {