From d1ed3255797ff35404334a859370d60f557a14aa Mon Sep 17 00:00:00 2001 From: Q m Date: Thu, 20 Nov 2025 17:20:21 +0800 Subject: [PATCH] fix: init tencent waf deployer add region param --- internal/certdeploy/deployers/sp_tencentcloud_waf.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/certdeploy/deployers/sp_tencentcloud_waf.go b/internal/certdeploy/deployers/sp_tencentcloud_waf.go index 293d6c81..19216077 100644 --- a/internal/certdeploy/deployers/sp_tencentcloud_waf.go +++ b/internal/certdeploy/deployers/sp_tencentcloud_waf.go @@ -20,6 +20,7 @@ func init() { SecretId: credentials.SecretId, SecretKey: credentials.SecretKey, Endpoint: xmaps.GetString(options.ProviderExtendedConfig, "endpoint"), + Region: xmaps.GetString(options.ProviderExtendedConfig, "region"), Domain: xmaps.GetString(options.ProviderExtendedConfig, "domain"), DomainId: xmaps.GetString(options.ProviderExtendedConfig, "domainId"), InstanceId: xmaps.GetString(options.ProviderExtendedConfig, "instanceId"),