Skip to content

Commit

Permalink
Merge pull request #3 from gaussb-labs/feature/expose-laod-balancer-r…
Browse files Browse the repository at this point in the history
…esources-arn

feat: add load balancer and listeners arn in output
  • Loading branch information
premdeepsaini authored Aug 5, 2022
2 parents 3c41d58 + ef5dc12 commit e3f7c34
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
output "alb_arn" {
description = "ARN for the application load balancer provisioned by this module"
value = aws_lb.alb.arn
}

output "alb_http_listener_arn" {
description = "ARN for the application load balancer HTTP listener"
value = aws_lb_listener.app_http.arn
}

output "alb_https_listener_arn" {
description = "ARN for the application load balancer HTTPS listener"
value = aws_lb_listener.app_https.arn
}

0 comments on commit e3f7c34

Please sign in to comment.