Skip to content

Commit 6fe6057

Browse files
committed
fix: consider the update-cleanup-in-progress cloudformation state as an in-progress state
1 parent 1f80e42 commit 6fe6057

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/sam/01-deploy/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
// https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-describing-stacks.html
1+
// https://docs.aws.amazon.com/cli/latest/reference/cloudformation/describe-stacks.html#output - scroll down to `StackStatus`
22
let processingStates = [
33
'CREATE_IN_PROGRESS',
4+
'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS',
45
'UPDATE_IN_PROGRESS',
56
]
67

78
let successStates = [
89
'CREATE_COMPLETE',
9-
'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS',
1010
'UPDATE_COMPLETE',
1111
]
1212

0 commit comments

Comments
 (0)