File tree Expand file tree Collapse file tree 2 files changed +5
-0
lines changed
Expand file tree Collapse file tree 2 files changed +5
-0
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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+
2529output "ecs_service_role_arn" {
2630 value = " ${ aws_iam_role . ecs_service_role . arn } "
2731}
You can’t perform that action at this time.
0 commit comments