Hi All, I have recently updated Pulumi packages f...
# general
c
Hi All, I have recently updated Pulumi packages from
Copy code
"@pulumi/aws": "^4.0.0",
        "@pulumi/awsx": "^0.30.0",
to
Copy code
"@pulumi/aws": "^5.0.0",
        "@pulumi/awsx": "^0.40.0",
Shortly after that, I have noticed a
skipDestroy
key being added to the ECS task definition outputs. I do not define this parameter anywhere in the code, it is added implicitly by Pulumi (or an upstream provider). Downgrading to the old aws/awsx packages does not help (the upstream provider is likely not downgraded with them). The key is not recognized by
aws-actions/amazon-ecs-deploy-task-definition
GitHub action and makes it fail:
Copy code
Error: Failed to register task definition in ECS: Unexpected key 'skipDestroy' found in params
Error: Unexpected key 'skipDestroy' found in params
Has anyone seen this issue and/or can help?