1
1

More than 1 year has passed since last update.

CloudFormation で変更なしの変更セットを流したい時

Posted at

概要

CloudFormationのコードを書いているとリソースに変更は加えたくないけどコードの中身を整理したいときがたまにある。
そのまま変更セットを流そうとすると以下エラーで怒られてしまう。

The submitted information didn't contain changes. Submit different information to create a change set.

そのため、影響の少なそうな変更箇所が無いか探してみた。

変更箇所

Parameters を追加してみる → ダメでした

Parameters:
  Dummy:
    Type: string
    Default: dummy

Outputs を追加してみる → いけた!

Outputs:
  Dummy:
    Value: "dummy"

スタックの出力に変なの追加されちゃうので消し忘れの無いように、、、
(せっかく整理したのに・・・まあ影響ないけど。)

1
1
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
1
1