Skip to content

Commit

Permalink
alter output (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Montek30 authored Jun 2, 2023
1 parent b1f5dd9 commit 1842105
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
Expand Up @@ -14,11 +14,11 @@ output "broker_instances" {
}

output "nlb_dns_name" {
value = aws_lb.main[0].dns_name
value = try(aws_lb.main[0].dns_name, "")
description = "NLB DNS Name."
}

output "nlb_zone_id" {
value = aws_lb.main[0].zone_id
value = try(aws_lb.main[0].zone_id, "")
description = "NLB Zone Id."
}

0 comments on commit 1842105

Please sign in to comment.