Skip to content

Commit

Permalink
Merge pull request #47 from 7Factor/jwood/output_lb_zone_id
Browse files Browse the repository at this point in the history
Add LB zone id to outputs.
  • Loading branch information
dumptruckman authored Mar 1, 2024
2 parents 8f91b4f + acdb3e1 commit 7a7cd1d
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ output "lb_dns" {
description = "The DNS value of your LB hosting the concourse cluster. Point your FQDN to it."
}

output "lb_zone_id" {
value = aws_elb.concourse_lb.zone_id
description = "The zone ID of your LB hosting the concourse cluster."
}

output "web_sg" {
value = aws_security_group.web_sg.id
description = "ID of the security group for web boxes. Consume this by other modules as necessary--specifically locking down DB access."
Expand Down

0 comments on commit 7a7cd1d

Please sign in to comment.