Skip to content

Commit 1381ebd

Browse files
authored
Merge pull request #11 from mavericks-software/add-lb-listener-arn-output
add lb listener ARN
2 parents a4fdf9f + 2dda028 commit 1381ebd

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ Check the section "Other modules that you may need to use this module" for detai
7070
* lb_arn: Load Balancer ARN.
7171
* lb_arn_suffix: Load Balancer ARN Suffix.
7272
* lb_dns_name: Load Balancer DNS Name.
73+
* lb_listener_arn: Load Balancer Listener ARN.
7374
* lb_zone_id: Load Balancer Zone ID.
7475
* lb_sg_id: Load Balancer Security Group - The ID of the security group.
7576
* lb_sg_arn: Load Balancer Security Group - The ARN of the security group.

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ output "lb_dns_name" {
4444
value = aws_lb.lb.dns_name
4545
}
4646

47+
output "lb_listener_arn" {
48+
description = "$${var.name_preffix} Load Balancer Listener ARN"
49+
value = aws_lb_listener.listener.arn
50+
}
51+
4752
output "lb_zone_id" {
4853
description = "$${var.name_preffix} Load Balancer Zone ID"
4954
value = aws_lb.lb.zone_id

0 commit comments

Comments
 (0)