Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: targetGroup errors appear in containerDefinition diff (#1258)
The [container definition](https://www.pulumi.com/registry/packages/aws/api-docs/ecs/taskdefinition/#containerdefinitions_nodejs) property of a Task Definition is a JSON string. We do not provide types for the container definition which means it is possible to include things in that JSON string that shouldn't be there. In the case of this bug, we are including an additional `targetGroup` object in the container definition string. To fix this, I am removing the `targetGroup` field. fix #1248
- Loading branch information