Is it impossible to update a CloudFormation stack once it goes into the UPDATE_ROLLBACK_COMPLETE
state? I am using CodePipeline to deploy things. I find that once a stack goes into some invalid state, many times, I have to delete the stack manually and let it recreate everything again. Is that the right way to do this?
If the stack is in UPDATE_ROLLBACK_COMPLETE
state you should be able to update the stack again.
If the rollback failed you may need to call ContinueUpdateRollback from CloudFormation before you can update again.
If your stack is stuck in UPDATE_ROLLBACK_COMPLETE_CLEANUP_IN_PROGRESS
you may be experiencing this issue.