File tree Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Expand file tree Collapse file tree 2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -5,15 +5,15 @@ output "ecs_cluster_name" {
5
5
6
6
output "ecs_service_name" {
7
7
description = " The name of the ECS service"
8
- value = module. ecs_services [ * ] . service_name
8
+ value = module. ecs_services . service_name
9
9
}
10
10
11
11
output "ecs_service_arn" {
12
12
description = " The ARN of the ECS service"
13
- value = module. ecs_services [ * ] . ecs_service_arn
13
+ value = module. ecs_services . ecs_service_arn
14
14
}
15
15
16
16
output "ecs_task_definition_arn" {
17
17
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
19
19
}
Original file line number Diff line number Diff line change 1
1
output "service_name" {
2
2
description = " The name of the ECS service."
3
- value = aws_ecs_service. this . name
3
+ value = aws_ecs_service. this [ * ] . name
4
4
}
5
5
6
6
output "ecs_task_definition_arn" {
7
7
description = " The ARN of the ECS task definition"
8
- value = aws_ecs_task_definition. this . arn
8
+ value = aws_ecs_task_definition. this [ * ] . arn
9
9
}
10
10
11
11
output "ecs_task_role_arn" {
12
12
description = " The ARN of the IAM role assigned to the ECS task"
13
- value = aws_iam_role. task_role . arn
13
+ value = aws_iam_role. task_role [ * ] . arn
14
14
}
15
15
16
16
output "ecs_service_arn" {
17
17
description = " The ARN of the ECS service"
18
- value = aws_ecs_service. this . id
18
+ value = aws_ecs_service. this [ * ] . id
19
19
}
You can’t perform that action at this time.
0 commit comments