From b2270b5c03d64305d10e6eeaab5b0787f3081140 Mon Sep 17 00:00:00 2001 From: Deepak verma <89906661+d4kverma@users.noreply.github.com> Date: Thu, 28 Nov 2024 13:55:51 +0530 Subject: [PATCH] fix: network interface output condition --- outputs.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/outputs.tf b/outputs.tf index 6f33768..387aac4 100644 --- a/outputs.tf +++ b/outputs.tf @@ -1,5 +1,5 @@ output "network_interface_id" { - value = try(azurerm_network_interface.default[*].id, null) + value = azurerm_network_interface.default[*].id description = "The ID of the Network Interface." }