diff --git a/ecs/cloudformation.go b/ecs/cloudformation.go index 68630e1a..7a022826 100644 --- a/ecs/cloudformation.go +++ b/ecs/cloudformation.go @@ -452,11 +452,12 @@ func createTargetGroup(project *types.Project, service types.ServiceConfig, port port.Published, ) template.Resources[targetGroupName] = &elasticloadbalancingv2.TargetGroup{ - Port: int(port.Target), - Protocol: protocol, - Tags: projectTags(project), - VpcId: cloudformation.Ref(parameterVPCId), - TargetType: elbv2.TargetTypeEnumIp, + HealthCheckEnabled: false, + Port: int(port.Target), + Protocol: protocol, + Tags: projectTags(project), + TargetType: elbv2.TargetTypeEnumIp, + VpcId: cloudformation.Ref(parameterVPCId), } return targetGroupName }