Skip to content

Commit e3f7c34

Browse files
Merge pull request #3 from gaussb-labs/feature/expose-laod-balancer-resources-arn
feat: add load balancer and listeners arn in output
2 parents 3c41d58 + ef5dc12 commit e3f7c34

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

outputs.tf

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
output "alb_arn" {
2+
description = "ARN for the application load balancer provisioned by this module"
3+
value = aws_lb.alb.arn
4+
}
5+
6+
output "alb_http_listener_arn" {
7+
description = "ARN for the application load balancer HTTP listener"
8+
value = aws_lb_listener.app_http.arn
9+
}
10+
11+
output "alb_https_listener_arn" {
12+
description = "ARN for the application load balancer HTTPS listener"
13+
value = aws_lb_listener.app_https.arn
14+
}

0 commit comments

Comments
 (0)