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 958f41a1da
commit 2f2787f934
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
7 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" {