Skip to content

Commit

Permalink
fix: support tunnel syntax fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
jmolnar-zscaler committed Jan 11, 2024
1 parent 783d0e3 commit 5cec09d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/terraform-zscc-network-gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -217,9 +217,10 @@ resource "google_compute_firewall" "ssh_intranet_cc_mgmt" {

resource "google_compute_firewall" "zssupport_tunnel_cc_mgmt" {
count = var.support_access_enabled ? 1 : 0
name = coalesce(var.fw_cc_mgmt_zssupport_tunnel_name, "${var.name_prefix}-zscaler_support_access-${var.resource_tag}")
name = coalesce(var.fw_cc_mgmt_zssupport_tunnel_name, "${var.name_prefix}-zscaler-support-access-${var.resource_tag}")
description = "Required for Cloud Connector to establish connectivity for Zscaler Support to remotely assist"
network = try(google_compute_network.mgmt_vpc_network[0].self_link, data.google_compute_network.mgmt_vpc_network_selected[0].self_link)
direction = "EGRESS"
allow {
protocol = "tcp"
ports = ["12002"]
Expand Down

0 comments on commit 5cec09d

Please sign in to comment.