Skip to content

Commit

Permalink
fix:change in count condition
Browse files Browse the repository at this point in the history
  • Loading branch information
Rupalgw committed Feb 19, 2024
1 parent eb2c666 commit 15e3e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
output "dns_name" {
value = azurerm_bastion_host.main[0].dns_name
value = try(azurerm_bastion_host.main[0].dns_name, null)
description = "Specifies the name of the bastion host"
}

output "id" {
value = azurerm_bastion_host.main[0].id
value = try(azurerm_bastion_host.main[0].id, null)
description = "Specifies the resource id of the bastion host"
}

0 comments on commit 15e3e53

Please sign in to comment.