From 708dbf9f80bfb5d175536129ddbc8c1c9e2aaeed Mon Sep 17 00:00:00 2001 From: cshea15 Date: Thu, 5 Oct 2023 17:00:51 -0400 Subject: [PATCH] fixed nsg protocol error --- quickstart/201-azfw-with-ipgroups/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quickstart/201-azfw-with-ipgroups/main.tf b/quickstart/201-azfw-with-ipgroups/main.tf index 5da8605d..68d506a0 100644 --- a/quickstart/201-azfw-with-ipgroups/main.tf +++ b/quickstart/201-azfw-with-ipgroups/main.tf @@ -184,7 +184,7 @@ resource "azurerm_network_security_group" "vm_jump_nsg" { priority = 1000 direction = "Inbound" access = "Allow" - protocol = "SSH" + protocol = "Tcp" source_port_range = "*" destination_port_range = "22" source_address_prefix = "*"