We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9740cdf commit b6892a6Copy full SHA for b6892a6
1 file changed
packages/amplify-cli/src/commands/gen2-migration/decommission.ts
@@ -38,7 +38,13 @@ export class AmplifyMigrationDecommissionStep extends AmplifyMigrationStep {
38
new CreateChangeSetCommand({
39
StackName: stackName,
40
ChangeSetName: changeSetName,
41
- TemplateBody: JSON.stringify({ Resources: {} }),
+ TemplateBody: JSON.stringify({
42
+ Resources: {
43
+ DummyResource: {
44
+ Type: 'AWS::CloudFormation::WaitConditionHandle',
45
+ },
46
47
+ }),
48
}),
49
);
50
0 commit comments