Skip to content

Commit fadb264

Browse files
committed
Fix bad configuration check for existing stacks.
1 parent e105b43 commit fadb264

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/CloudFormationDeployer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,7 +378,7 @@ class CloudFormationDeployer {
378378

379379
// If the stack already existed, and there are no new regions, all the stacks are updated then check to see if the template matches the new template
380380
if (stackExists && !newRegions.length && existingStacks.every(s => s.Status === 'CURRENT')) {
381-
const regionStacks = await this.cloudFormationClient.listStacks({ StackStatusFilter: ['CONFIGURATION_COMPLETE', 'CREATE_COMPLETE', 'UPDATE_COMPLETE', 'UPDATE_ROLLBACK_COMPLETE'] }).promise()
381+
const regionStacks = await this.cloudFormationClient.listStacks({ StackStatusFilter: ['CREATE_COMPLETE', 'UPDATE_COMPLETE', 'UPDATE_ROLLBACK_COMPLETE'] }).promise()
382382
.then(r => r.StackSummaries);
383383

384384
const thisRegionsStackId = existingStacks.find(s => s.Region === this.cloudFormationClient.config.region).StackId;

0 commit comments

Comments
 (0)