You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The end-to-end tests currently use git diff to compare input and output CloudFormation templates. This is not sophisticated enough, because files of two templates may look different, even when the CloudFormation templates are equivalent.
A couple options to implement a more advance mechanism here:
Do JSON object comparison. We should also consider automatically resolving differences where the JSON is different, but the CloudFormation templates are equivalent.
Create a CloudFormation stack from the original template, then do a cdk diff with the new stack. This will have challenges with handling credentials if we want to do it in a pipeline or in GitHub actions.
The text was updated successfully, but these errors were encountered:
The end-to-end tests currently use
git diff
to compare input and output CloudFormation templates. This is not sophisticated enough, because files of two templates may look different, even when the CloudFormation templates are equivalent.A couple options to implement a more advance mechanism here:
cdk diff
with the new stack. This will have challenges with handling credentials if we want to do it in a pipeline or in GitHub actions.The text was updated successfully, but these errors were encountered: