Skip to content

Instantly share code, notes, and snippets.

@billmoritz
Last active December 3, 2015 16:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save billmoritz/c54902d20a72d9396e20 to your computer and use it in GitHub Desktop.
Save billmoritz/c54902d20a72d9396e20 to your computer and use it in GitHub Desktop.
Download cloudformation templates from your aws account
#!/bin/bash
for i in `aws cloudformation list-stacks --output text --stack-status-filter CREATE_COMPLETE | awk '{ print $4 }'`; do
aws cloudformation get-template --stack-name $i | jq .TemplateBody | jq -S '.AWSTemplateFormatVersion="2010-09-09"' > stacks/$i.json
done
for i in `aws cloudformation list-stacks --output text --stack-status-filter UPDATE_COMPLETE | awk '{ print $5 }'`; do
aws cloudformation get-template --stack-name $i | jq .TemplateBody | jq -S '.AWSTemplateFormatVersion="2010-09-09"' > stacks/$i.json
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment