A small tool to delete failed cloudformation changesets
When using the aws cli to deploy cloudformation templates without changes you generate changesets that are marked as failed. It seems there is an undocumented hard limit of 1000 (failed?) changesets. If you hit that you are not able to deploy to that stack anymore.
This cli tool deletes those changesets. There also is a flag for the paranoid to keep a number of those and just delete the rest.
./changeset-cleaner --profile <YOUR_AWS_PROFILE> \
--stack <STACK_BLOCKED_BY_TOO_MANY_FAILED_CHANGESETS> \
--keep 100
If no stack name is given all stacks will be cleaned from failed changesets.