LoginSignup
1
3

More than 3 years have passed since last update.

AWS configを無効化する。

Last updated at Posted at 2019-06-02

あぁああああああああああああああああああああああ

AWS configってどうやって無効化するんだよぉおおおおおおおおおおお
(取り乱してすみませんでした。)

解決方法

AWS CLIを使って無効化しましょう。

前提条件

・AWS CLIが使用できること
・AWS CLIでconfigが有効化されているリージョンが設定されていること
・jqコマンドが使用できること

忙しい人向けワンライナーコマンド

# for a in `aws configservice describe-delivery-channels | jq -r '.DeliveryChannels[].name'`; do aws configservice delete-configuration-recorder --configuration-recorder-name ${a}; aws configservice delete-delivery-channel --delivery-channel-name ${a}; done

その他

ルールを全て削除する際にはこちらの記事を参考にしてください。

終わりに

AWSは偉大である。

皆さま良いAWSライフを!

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