diff --git a/modules/autoscale/common/main.tf b/modules/autoscale/common/main.tf index 6b86377..05fb280 100755 --- a/modules/autoscale/common/main.tf +++ b/modules/autoscale/common/main.tf @@ -89,8 +89,8 @@ resource "google_compute_instance_template" "instance_template" { config_path = "" sicKey = "" allowUploadDownload = var.allow_upload_download - templateName = "autoscale" - templateVersion = "20250217" + templateName = var.ip_stack_type == "IPV4_IPV6" ? "autoscale_dual_stack" : "autoscale" + templateVersion = "1.0.13" templateType = "terraform" mgmtNIC = var.management_nic hasInternet = "false" diff --git a/modules/cluster/common/cluster-member/main.tf b/modules/cluster/common/cluster-member/main.tf index c302099..6285e0d 100755 --- a/modules/cluster/common/cluster-member/main.tf +++ b/modules/cluster/common/cluster-member/main.tf @@ -114,7 +114,7 @@ resource "google_compute_instance" "cluster_member" { sicKey = var.sic_key allowUploadDownload = var.allow_upload_download templateName = "cluster_tf" - templateVersion = "20250306" + templateVersion = "1.0.13" templateType = "terraform" mgmtNIC = "" hasInternet = "true" diff --git a/modules/network-security-integration/common/main.tf b/modules/network-security-integration/common/main.tf index ece4387..9115ffb 100644 --- a/modules/network-security-integration/common/main.tf +++ b/modules/network-security-integration/common/main.tf @@ -96,8 +96,8 @@ resource "google_compute_instance_template" "instance_template" { config_path = "" sicKey = "" allowUploadDownload = var.allow_upload_download - templateName = "network_security_integration_tf" - templateVersion = "20230910" + templateName = var.ip_stack_type == "IPV4_IPV6" ? "network_security_integration_tf_dual_stack" : "network_security_integration_tf" + templateVersion = "1.0.13" templateType = "terraform" mgmtNIC = var.management_nic hasInternet = "false" diff --git a/modules/single/common/main.tf b/modules/single/common/main.tf index a1df310..ae55eef 100755 --- a/modules/single/common/main.tf +++ b/modules/single/common/main.tf @@ -164,8 +164,8 @@ resource "google_compute_instance" "gateway" { config_path = "projects/${var.project}/configs/-config" sicKey = "" allowUploadDownload = var.allow_upload_download - templateName = "single_tf" - templateVersion = "20250306" + templateName = var.ip_stack_type == "IPV4_IPV6" ? "single_tf_dual_stack" : "single_tf" + templateVersion = "1.0.13" templateType = "terraform" hasInternet = "true" enableMonitoring = var.enable_monitoring