Skip to content

Commit

Permalink
add arn suffix (#14)
Browse files Browse the repository at this point in the history
* add arn suffix

* lb suffix
  • Loading branch information
TerribleDev authored Oct 16, 2017
1 parent 96785f8 commit 701789c
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions tf_alb/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ output "lb_dns_name" {
output "lb_arn" {
value = "${aws_alb.main.arn}"
}

output "lb_arn_suffix" {
value = "${aws_alb.main.arn_suffix}"
}
4 changes: 4 additions & 0 deletions tf_alb_logged/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,7 @@ output "lb_dns_name" {
output "lb_arn" {
value = "${aws_alb.main.arn}"
}

output "lb_arn_suffix" {
value = "${aws_alb.main.arn_suffix}"
}
4 changes: 4 additions & 0 deletions tf_ecs_default_service/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ output "service_name" {
output "listener_arn" {
value = "${aws_alb_listener.front_end.arn}"
}

output "target_group_arn_suffix" {
value = "${aws_alb_target_group.grp.arn_suffix}"
}
4 changes: 4 additions & 0 deletions tf_ecs_service/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,7 @@ output "service_name" {
output "listener_arn" {
value = "${aws_alb_listener.front_end.arn}"
}

output "target_group_arn_suffix" {
value = "${aws_alb_target_group.grp.arn_suffix}"
}

0 comments on commit 701789c

Please sign in to comment.