From c322d0b90576f29b9a9e48141dfdb7ec050f4196 Mon Sep 17 00:00:00 2001 From: Michal Date: Fri, 12 Jan 2018 21:03:15 +0100 Subject: [PATCH] Alb name (#28) * Adding new output for alb arn_suffix --- outputs.tf | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/outputs.tf b/outputs.tf index 84c9b96..fda9700 100644 --- a/outputs.tf +++ b/outputs.tf @@ -3,6 +3,11 @@ output "alb_dns_name" { value = "${aws_alb.main.dns_name}" } +output "alb_arn_suffix" { + description = "ARN suffix of our ALB - can be used with CloudWatch" + value = "${aws_alb.main.arn_suffix}" +} + output "alb_id" { description = "The ID of the ALB we created." value = "${aws_alb.main.id}"