Skip to content

Commit

Permalink
The port of ha-exporter has changed to 9002
Browse files Browse the repository at this point in the history
previously it was the hawk-exporter (deprecated)
now the ha-cluster exporter is running on port 9002
  • Loading branch information
MalloZup committed Sep 23, 2019
1 parent 7b12d0c commit f879eeb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions azure/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "*"
}
Expand Down

0 comments on commit f879eeb

Please sign in to comment.