add xray along with multiple configs [ci skip]

This commit is contained in:
Viktor Barzin 2025-08-22 21:41:51 +00:00
parent 6c6fb25ad2
commit e5e813afb5
4 changed files with 384 additions and 0 deletions

View file

@ -90,6 +90,9 @@ variable "realestate_crawler_notification_settings" {
variable "kured_notify_url" {}
variable "onlyoffice_db_password" { type = string }
variable "onlyoffice_jwt_token" { type = string }
variable "xray_reality_clients" { type = list(map(string)) }
variable "xray_reality_private_key" { type = string }
variable "xray_reality_short_ids" { type = list(string) }
@ -657,3 +660,12 @@ module "forgejo" {
source = "./forgejo"
tls_secret_name = var.tls_secret_name
}
module "xray" {
source = "./xray"
tls_secret_name = var.tls_secret_name
xray_reality_clients = var.xray_reality_clients
xray_reality_private_key = var.xray_reality_private_key
xray_reality_short_ids = var.xray_reality_short_ids
}