Created
February 5, 2019 03:40
-
-
Save tkhk/a137872de9f7b002e5b90aafbd045c32 to your computer and use it in GitHub Desktop.
CloudFormation ChangeSet 内の Tags だけの変更を除外する
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
change_set_arn=arn:aws:cloudformation:ap-northeast-1:xxxxxxxxxxxxxxxxxxxxx | |
aws cloudformation describe-change-set --change-set-name $change_set_arn | jq '.Changes[].ResourceChange | select(.Scope[] | contains("Tags") | not) | .' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment