Hi Team, I am using Hybrid workpool with AWS ECS ...
# ask-community
r
Hi Team, I am using Hybrid workpool with AWS ECS hence flow runs within containers on AWS ECS. I have some infrastructure overrides where I am providing cpu, memory, image etc and I understand based on that prefect creates task definition. Due to the security requirement, I want to add additional attributes
"readonlyRootFilesystem": true
in containerDefinitions. I tried to add below in prefect.yaml where I define the infrastructure overrides section for the deployment where work pool is defined along with other attributes but task_customizations does not get applied. task_customizations = [ { “op”: “add”, “path”: “/containerDefinitions/0/readonlyRootFilesystem”, “value”: true } ] so it is possible add attributes inside the task definition (i.e. readonlyRootFilesystem) created by prefect? Or I have to have my own custom definition and provide to prefect?