Skip to content

Commit 7614154

Browse files
committed
refactor: update firewall comments
1 parent adb1a51 commit 7614154

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

2-networks/modules/standard_shared_vpc/firewall.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
Default firewall rules
1919
*****************************************/
2020

21-
// Allow SSH when using the allow-ssh tag for Linux workloads.
21+
// Allow SSH via IAP when using the allow-iap-ssh tag for Linux workloads.
2222
resource "google_compute_firewall" "allow_iap_ssh" {
2323
count = var.default_fw_rules_enabled ? 1 : 0
2424
name = "allow-iap-ssh"
@@ -36,7 +36,7 @@ resource "google_compute_firewall" "allow_iap_ssh" {
3636
target_tags = ["allow-iap-ssh"]
3737
}
3838

39-
// Allow RDP when using the allow-rdp tag for Windows workloads.
39+
// Allow RDP via IAP when using the allow-iap-rdp tag for Windows workloads.
4040
resource "google_compute_firewall" "allow_iap_rdp" {
4141
count = var.default_fw_rules_enabled ? 1 : 0
4242
name = "allow-iap-rdp"

0 commit comments

Comments
 (0)