File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ resource "aws_ecs_service" "aoc" {
138138 count = var. sample_app_callable ? 1 : 0
139139 name = " aocservice-${ module . common . testing_id } "
140140 cluster = module. ecs_cluster . cluster_id
141- task_definition = aws_ecs_task_definition. aoc . arn
141+ task_definition = " ${ aws_ecs_task_definition . aoc . family } :1 "
142142 desired_count = 1
143143 launch_type = var. ecs_launch_type
144144
@@ -164,7 +164,7 @@ resource "aws_ecs_service" "aoc_without_sample_app" {
164164 count = ! var. sample_app_callable ? 1 : 0
165165 name = " aocservice-${ module . common . testing_id } "
166166 cluster = module. ecs_cluster . cluster_id
167- task_definition = aws_ecs_task_definition. aoc . arn
167+ task_definition = " ${ aws_ecs_task_definition . aoc . family } :1 "
168168 desired_count = 1
169169 launch_type = var. ecs_launch_type
170170
You can’t perform that action at this time.
0 commit comments