From ef5dc124eb5d97932e1c46470570e6d128cb0b0c Mon Sep 17 00:00:00 2001 From: Premdeep Saini Date: Fri, 5 Aug 2022 15:15:42 +0530 Subject: [PATCH] feat: add load balancer and listeners arn in output --- outputs.tf | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/outputs.tf b/outputs.tf index e69de29..aca458c 100644 --- a/outputs.tf +++ b/outputs.tf @@ -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 +}