Rogelio
06/10/2024, 8:06 PM"network_configuration": {
"type": "object",
"title": "Network Configuration",
"default": {
"subnets": [
"subnet-XX"
],
"assignPublicIp": "DISABLED",
"securityGroups": [
"sg-XX"
]
},
"description": "Apply a custom network configuration. See the [AWS documentation](<https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ecs-service-awsvpcconfiguration.html>) for available options."
}
Also I've explicitly declared the VPC ID which seems to be required for this to run, but I'm still getting the same error.
Does anyone know how to fix this?Kevin Grismore
06/10/2024, 8:07 PMKevin Grismore
06/10/2024, 8:08 PM},
"launchType": "{{ launch_type }}",
"taskDefinition": "{{ task_definition_arn }}"
},
"network_configuration": "{{ network_configuration }}", <----- this line
"cloudwatch_logs_options": "{{ cloudwatch_logs_options }}",
"configure_cloudwatch_logs": "{{ configure_cloudwatch_logs }}",
"task_start_timeout_seconds": "{{ task_start_timeout_seconds }}",
"auto_deregister_task_definition": "{{ auto_deregister_task_definition }}"
}
}
to the json on the advanced tab of the Edit page of your work pool. we'll get this fixed asap so newly created push work pools have it on thereOlli Kavén
06/11/2024, 9:14 AM{
"awsvpcConfiguration": {
"subnets": [
"subnet-XXXXX",
"subnet-XXXX"
],
"assignPublicIp": "DISABLED"
}
}
Also waiting to get this fixedKevin Grismore
06/11/2024, 3:43 PM