cdklabs / cdk-ecs-codedeploy

Apache License 2.0
34 stars 8 forks source link

fix: Set prop to maintain current resources with aws-cdk 2.139.0 #554

Closed mikeshepherd closed 3 months ago

mikeshepherd commented 5 months ago

aws-cdk v2.139.0 introduced a change to custom resources to create a log group by default. This change sets the value of the newly introduced prop disableWaiterStateMachineLogging on custom resources to true to disable this new behaviour.

This is necessary because in some situations this library can attempt to recreate this resource with a different logical id but the same log group name which will fail. Enabling this new flag preserves the previous behaviour and prevents these deployment failures