We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 90a0524 + da844fb commit ba439f0Copy full SHA for ba439f0
azure/network.tf
@@ -20,6 +20,7 @@ resource "azurerm_public_ip" "public_ip" {
20
name = format("%s-%s-public-ipv4", var.cluster_name, each.key)
21
location = var.location
22
resource_group_name = local.resource_group_name
23
+ sku = contains(each.value.tags, "public") ? "Basic" : "Standard"
24
allocation_method = contains(each.value.tags, "public") ? "Static" : "Dynamic"
25
}
26
0 commit comments