Skip to content

Commit

Permalink
Merge pull request #334 from ComputeCanada/azure_sku
Browse files Browse the repository at this point in the history
Fix sku for public ip address in Azure
  • Loading branch information
cmd-ntrf authored Nov 17, 2024
2 parents 11294d6 + f945b55 commit db13590
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 @@ -20,8 +20,8 @@ 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"
allocation_method = contains(each.value.tags, "public") ? "Static" : "Dynamic"
sku = "Standard"
allocation_method = "Static"
}

# Build a list of tag sets that include firewall rule tags
Expand Down

0 comments on commit db13590

Please sign in to comment.