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

@ -121,6 +121,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 }
provider "kubernetes" {
@ -506,6 +509,10 @@ module "kubernetes_cluster" {
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
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
}