From f879eeb97266927f43fe34ab251125fd03f39893 Mon Sep 17 00:00:00 2001 From: dmaiocchi Date: Mon, 23 Sep 2019 12:14:08 +0200 Subject: [PATCH] The port of ha-exporter has changed to 9002 previously it was the hawk-exporter (deprecated) now the ha-cluster exporter is running on port 9002 --- azure/network.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/azure/network.tf b/azure/network.tf index 73491843b..c3c8935a4 100644 --- a/azure/network.tf +++ b/azure/network.tf @@ -395,13 +395,13 @@ resource "azurerm_network_security_group" "mysecgroup" { destination_address_prefix = "*" } security_rule { - name = "hawkExporter" + name = "ha-exporter" priority = 1007 direction = "Inbound" access = "Allow" protocol = "*" source_port_range = "*" - destination_port_range = "9001" + destination_port_range = "9002" source_address_prefix = "*" destination_address_prefix = "*" }