We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3c41d58 + ef5dc12 commit e3f7c34Copy full SHA for e3f7c34
outputs.tf
@@ -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