Skip to content

Commit 46bd6b5

Browse files
glennbechbrandonjbjelland
authored andcommitted
Add ARN of ALB to outputs (#17)
* Added the ARN of the ALB to the outputs
1 parent 59b26bf commit 46bd6b5

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

outputs.tf

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,8 @@ output "target_group_arn" {
3232
description = "ARN of the target group. Useful for passing to your Auto Scaling group module."
3333
value = "${aws_alb_target_group.target_group.arn}"
3434
}
35+
36+
output "alb_arn" {
37+
description = "ARN of the ALB itself. Useful for debug output, for example when attaching a WAF."
38+
value = "${aws_alb.main.arn}"
39+
}

0 commit comments

Comments
 (0)