Skip to content

Commit eadbc4e

Browse files
committed
adding ec2
1 parent cb730ff commit eadbc4e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/ecs-ec2/outputs.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ output "ecs_cluster_name" {
55

66
output "ecs_service_name" {
77
description = "The name of the ECS service"
8-
value = module.ecs_services.service_name
8+
value = module.ecs_services[*].service_name
99
}
1010

1111
output "ecs_service_arn" {
1212
description = "The ARN of the ECS service"
13-
value = module.ecs_services.ecs_service_arn
13+
value = module.ecs_services[*].ecs_service_arn
1414
}
1515

1616
output "ecs_task_definition_arn" {
1717
description = "The ARN of the ECS task definition"
18-
value = module.ecs_services.ecs_task_definition_arn
18+
value = module.ecs_services[*].ecs_task_definition_arn
1919
}

0 commit comments

Comments
 (0)