Skip to content

Commit 5d1d817

Browse files
committed
Merge branch 'feature/output-asg-name' of https://github.com/linuxplayground/terraform-aws-ecs-cluster into develop
2 parents a839a21 + 3438ca2 commit 5d1d817

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,4 @@ module "container_service_cluster" {
9494
- `ecs_service_role_arn` - ARN of IAM role for use with ECS services
9595
- `ecs_autoscale_role_arn` - ARN of IAM role for use with ECS service autoscaling
9696
- `container_instance_ecs_for_ec2_service_role_arn` - ARN of IAM role associated with EC2 container instances
97+
- `container_instance_autoscaling_group_name` - Name of Container Instance Autoscaling Group

outputs.tf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ output "ecs_autoscale_role_name" {
2222
value = "${aws_iam_role.ecs_autoscale_role.name}"
2323
}
2424

25+
output "container_instance_autoscaling_group_name" {
26+
value = "${aws_autoscaling_group.container_instance.name}"
27+
}
28+
2529
output "ecs_service_role_arn" {
2630
value = "${aws_iam_role.ecs_service_role.arn}"
2731
}

0 commit comments

Comments
 (0)