add tuya bridge module to toggle the ATS device via web [ci skip]

This commit is contained in:
Viktor Barzin 2025-10-24 14:00:06 +00:00
parent a1878215cf
commit 208cf3c090
No known key found for this signature in database
GPG key ID: 4056458DBDBF8863
5 changed files with 112 additions and 0 deletions

View file

@ -100,6 +100,9 @@ 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) }
variable "tiny_tuya_api_key" { type = string }
variable "tiny_tuya_api_secret" { type = string }
variable "tiny_tuya_service_secret" { type = string }
@ -697,3 +700,12 @@ module "networking-toolbox" {
source = "./networking-toolbox"
tls_secret_name = var.tls_secret_name
}
module "tuya-bridge" {
source = "./tuya-bridge"
tls_secret_name = var.tls_secret_name
tiny_tuya_api_key = var.tiny_tuya_api_key
tiny_tuya_api_secret = var.tiny_tuya_api_secret
tiny_tuya_service_secret = var.tiny_tuya_service_secret
}