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.
1 parent 90195f3 commit b83ee35Copy full SHA for b83ee35
modules/azure/aks/nsg.tf
@@ -15,7 +15,7 @@ resource "azurerm_network_security_rule" "allow_internet_azure_lb" {
15
source_port_range = "*"
16
destination_port_range = "80,443"
17
source_address_prefix = "Internet"
18
- destination_address_prefix = data.azurerm_resources.public_ips
+ destination_address_prefixes = [data.azurerm_resources.public_ips]
19
resource_group_name = data.azurerm_resource_group.this.name
20
network_security_group_name = "nsg-${var.environment}-${var.location_short}-${var.core_name}-${var.name}${var.aks_name_suffix}"
21
}
0 commit comments