From 05876fded928a4acfad882d3ed116e9e761a536c Mon Sep 17 00:00:00 2001 From: Gillian Stravers Date: Mon, 2 Dec 2024 13:14:17 +0100 Subject: [PATCH] fix --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index d93f5ae..f57d62d 100644 --- a/main.tf +++ b/main.tf @@ -32,7 +32,7 @@ resource "azurerm_private_dns_resolver_inbound_endpoint" "this" { content { private_ip_allocation_method = ip_configurations.value.private_ip_allocation_method subnet_id = ip_configurations.value.subnet_id - private_ip_address = ip_configurations.value.private_ip_allocation_method == "Static" ? ip_configurations.value.ip_address : null + private_ip_address = ip_configurations.value.private_ip_allocation_method == "Static" ? ip_configurations.value.private_ip_address : null } }