Skip to content

Commit

Permalink
Fix sku for public ip address
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Nov 15, 2024
1 parent da844fb commit 73ab40c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion azure/network.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ resource "azurerm_public_ip" "public_ip" {
name = format("%s-%s-public-ipv4", var.cluster_name, each.key)
location = var.location
resource_group_name = local.resource_group_name
sku = contains(each.value.tags, "public") ? "Basic" : "Standard"
sku = contains(each.value.tags, "public") ? "Standard" : "Basic"
allocation_method = contains(each.value.tags, "public") ? "Static" : "Dynamic"
}

Expand Down

0 comments on commit 73ab40c

Please sign in to comment.