0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

CloudFormation で生成した Stack が詰まってしまった場合の解決方法

Posted at

これなに

  • CloudFormation を利用して CLI から Stack を作成して実行したい
  • しかし、その時にステータスが処理中系の状態になっており CLI でのコマンド実行が失敗してしまい、処理を止めたい時にどうにかしたいと思ったのでそれの解決方法を調べてみた

記事作成の背景

  • 以下の通り、該当の Stack 名称がスタックしてしまってエラーが発生したことで本記事作成に至った
$ aws cloudformation deploy --template-file 4_cloudformation_db_stack.yml --stack-name su3hokkaido-app --parameter-overrides $(cat dev.cfg) --capabilities CAPABILITY_NAMED_IAM --no-execute-changeset

An error occurred (ValidationError) when calling the CreateChangeSet operation: Stack:arn:aws:cloudformation:ap-northeast-1:314146317837:stack/su3hokkaido-app/2d6a1ab0-a72d-11ef-9c48-06a6ece35625 is in ROLLBACK_COMPLETE state and can not be updated.
$ 

image.png

解決方法

1: Stack を削除する

特になければ一旦はこちらの方法で解決可能。
削除したら CloudFormation の画面で該当の Stack が削除されたことを確認してみましょう。

実行コマンド

$ aws cloudformation delete-stack --stack-name ${STACK_NAME}

実行例

$ aws cloudformation delete-stack --stack-name su3hokkaido-app

2: Stack を強制的に削除する

前述の方法がダメならこちらで強制的に削除しましょう

実行コマンド

# スタックの削除保護を無効にする
$ aws cloudformation update-termination-protection --stack-name ${STACK_NAME} --no-enable-termination-protection

# スタックを削除する
$ aws cloudformation delete-stack --stack-name ${STACK_NAME}

# スタックの削除が完了するまで待つ
$ aws cloudformation wait stack-delete-complete --stack-name ${STACK_NAME}

実行例

$ aws cloudformation update-termination-protection --stack-name su3hokkaido-app --no-enable-termination-protection
$ aws cloudformation delete-stack --stack-name su3hokkaido-app
$ aws cloudformation wait stack-delete-complete --stack-name su3hokkaido-app

あとがき

GUI も便利ですが CLI から実行した方が理解を深めることができるので、ガイドを参考にしながら学習を進めたい…

image.png

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?