Skip to content

Commit b83ee35

Browse files
committed
Add tolist on ips
1 parent 90195f3 commit b83ee35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/azure/aks/nsg.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ resource "azurerm_network_security_rule" "allow_internet_azure_lb" {
1515
source_port_range = "*"
1616
destination_port_range = "80,443"
1717
source_address_prefix = "Internet"
18-
destination_address_prefix = data.azurerm_resources.public_ips
18+
destination_address_prefixes = [data.azurerm_resources.public_ips]
1919
resource_group_name = data.azurerm_resource_group.this.name
2020
network_security_group_name = "nsg-${var.environment}-${var.location_short}-${var.core_name}-${var.name}${var.aks_name_suffix}"
2121
}

0 commit comments

Comments
 (0)