Hi all! When submitting a flow run to an AWS ECS w...
# ask-community
p
Hi all! When submitting a flow run to an AWS ECS workpool, is it possible to tell the Prefect worker to start the ECS Task with "execute-command" enabled?
1
j
hey, yes any parameter here can be added to the
task_run_request
field in the base job template and it will be set for any flow running through this work pool: So step by step: 1. go to the UI of your work pool, click edit. 2. Click on the "Advanced" tab under "Base Job Template" 3. Scroll down for the
job_configuration
key and look for the
task_run_request
key nested under that. 4. Add any additional fields you'd like to be passed on to the run task api request
p
awesome, I'll try it out! Thank you!