Skip to content

Commit

Permalink
fix ip_configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
Darren Hull committed Jul 1, 2024
1 parent 8031305 commit 15b4d03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ resource "azurerm_private_endpoint" "pep" {
}
}
dynamic "ip_configuration" {
for_each = { for key, value in try(local.compute.ip_configuration, {}) : key => value }
for_each = { for key, value in try(var.settings.ip_configuration, {}) : key => value }
content {
name = ip_configuration.value.name
private_ip_address = ip_configuration.value.private_ip_address
Expand Down

0 comments on commit 15b4d03

Please sign in to comment.