'AWS CloudFormation stack stuck in the state UPDATE_ROLLBACK_IN_PROGRESS

I wanted to update my stack. The stack failed with error Function not found: arn:aws:lambda.... And stack in status UPDATE_ROLLBACK_IN_PROGRESS more than 5 hours. How do I stop this process?



Solution 1:[1]

If you deleted the function outside of CloudFormation, then you can manually create a new function of the same name. This sometimes helps.

You can also wait till the rollback timeouts. And it usually does after a while, but the time varies.

Another reason why it gets stuck in this state could be due to nested stacks:

In this case a recommended option is indeed to contact support:

To fix the stack, contact AWS customer support.

Recent AWS blog post also describes the issue and possible solutions:

Regarding the time to wait, the timeout varies:

In most situations, you must wait for your AWS CloudFormation stack to time out. The timeout length varies, and is based on the individual resource stabilization requirements that AWS CloudFormation waits for to reach the desired state.

Solution 2:[2]

In our case, we have mistakenly passed wrong image name to cloudformation template. After realising the mistake, we tried to stop the stack update, which made the stack stuck for forever in UPDATE_ROLLBACK_IN_PROGRESS status. SO during ECS service creation it got stuck. Solution:

  1. in Stack event check in which step is in progress. (our case ECS service update)
  2. Go to ECS service.
  3. Click on Update service.
  4. Choose older task definitions.
  5. And Update.

Your Task definition is reset to previous version. And roll back will complete successfully.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1
Solution 2 Debrup Majumdar