From 6fe60575e7d50ea367b046bd42a64532f5db111b Mon Sep 17 00:00:00 2001 From: filmaj Date: Mon, 15 Dec 2025 09:10:36 -0500 Subject: [PATCH] fix: consider the update-cleanup-in-progress cloudformation state as an in-progress state --- src/sam/01-deploy/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sam/01-deploy/index.js b/src/sam/01-deploy/index.js index fb158844..c240d8e6 100644 --- a/src/sam/01-deploy/index.js +++ b/src/sam/01-deploy/index.js @@ -1,12 +1,12 @@ -// https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/using-cfn-describing-stacks.html +// https://docs.aws.amazon.com/cli/latest/reference/cloudformation/describe-stacks.html#output - scroll down to `StackStatus` let processingStates = [ 'CREATE_IN_PROGRESS', + 'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS', 'UPDATE_IN_PROGRESS', ] let successStates = [ 'CREATE_COMPLETE', - 'UPDATE_COMPLETE_CLEANUP_IN_PROGRESS', 'UPDATE_COMPLETE', ]