Skip to content

Commit

Permalink
fixup! fixup! fix cli in upgrade test
Browse files Browse the repository at this point in the history
  • Loading branch information
elchead committed Oct 24, 2024
1 parent 44d7410 commit 44f57f9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions terraform/infrastructure/azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -233,9 +233,9 @@ resource "azurerm_network_security_rule" "nsg_rule" {
for_each = {
for o in local.ports : o.name => o
}

name = each.value.name
priority = each.value.priority
# TODO(elchead): v2.20.0: remove name suffix and priority offset. Might need to add create_before_destroy to the NSG rule.
name = "${each.value.name}-new"
priority = each.value.priority+10 # offset to not overlap with old rules
direction = "Inbound"
access = "Allow"
protocol = "Tcp"
Expand Down

0 comments on commit 44f57f9

Please sign in to comment.