Skip to content

Commit 815ecb2

Browse files
author
Matthias Alt
authored
Merge pull request #4 from solutionDrive/feature/add-more-output-to-application-cluster
Added some outputs to be able to reach the specific values from outside
2 parents e128382 + f6d4e2d commit 815ecb2

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

application_cluster/output.tf

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
output "auto_scaling_group_id" {
2+
value = "${aws_autoscaling_group.application_cluster_appserver_auto_scaling_group.id}"
3+
}
4+
5+
output "auto_scaling_group_arn" {
6+
value = "${aws_autoscaling_group.application_cluster_appserver_auto_scaling_group.arn}"
7+
}
8+
9+
output "auto_scaling_group_name" {
10+
value = "${aws_autoscaling_group.application_cluster_appserver_auto_scaling_group.name}"
11+
}
12+
13+
output "launch_configuration_id" {
14+
value = "${aws_launch_configuration.application_cluster_appserver_launch_configuration.id}"
15+
}
16+
17+
output "launch_configuration_name" {
18+
value = "${aws_launch_configuration.application_cluster_appserver_launch_configuration.name}"
19+
}
20+
21+
output "target_group_id" {
22+
value = "${aws_lb_target_group.application_cluster_target_group.id}"
23+
}
24+
25+
output "target_group_arn" {
26+
value = "${aws_lb_target_group.application_cluster_target_group.arn}"
27+
}
28+
29+
output "target_group_name" {
30+
value = "${aws_lb_target_group.application_cluster_target_group.name}"
31+
}

0 commit comments

Comments
 (0)