Skip to content

Commit

Permalink
Update security rule priorities
Browse files Browse the repository at this point in the history
  • Loading branch information
halprin committed Feb 19, 2024
1 parent 891e7f4 commit 0400722
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions operations/template/net.tf
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ resource "azurerm_network_security_rule" "allow_https_from_everywhere" {

name = "AllowHTTPSTraffic"
direction = "Inbound"
priority = 120
priority = 121
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
Expand All @@ -104,7 +104,7 @@ resource "azurerm_network_security_rule" "allow_postgres_from_everywhere" {

name = "AllowPostgresTraffic"
direction = "Inbound"
priority = 121
priority = 122
access = "Allow"
protocol = "Tcp"
source_port_range = "*"
Expand Down

0 comments on commit 0400722

Please sign in to comment.