From a8b71f76ab001f05c43b9eca6a7b9f825efd07f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Henrique=20Ferreira=20de=20Freitas?= Date: Mon, 9 Apr 2018 22:06:30 -0300 Subject: [PATCH] Fix http(s) source port range to any --- azure/master.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure/master.tf b/azure/master.tf index a1bc743..7881fc5 100644 --- a/azure/master.tf +++ b/azure/master.tf @@ -241,7 +241,7 @@ resource "azurerm_network_security_rule" "master-httpRule" { direction = "Inbound" access = "Allow" protocol = "Tcp" - source_port_range = "80" + source_port_range = "*" destination_port_range = "80" source_address_prefix = "*" destination_address_prefix = "*" @@ -255,7 +255,7 @@ resource "azurerm_network_security_rule" "master-httpsRule" { direction = "Inbound" access = "Allow" protocol = "Tcp" - source_port_range = "443" + source_port_range = "*" destination_port_range = "443" source_address_prefix = "*" destination_address_prefix = "*"