Skip to content

Instantly share code, notes, and snippets.

@tujlaky
Created February 13, 2018 21:24
Show Gist options
  • Save tujlaky/bc9458b8c93a5f07c04265432ec5993b to your computer and use it in GitHub Desktop.
Save tujlaky/bc9458b8c93a5f07c04265432ec5993b to your computer and use it in GitHub Desktop.
Script for delete all dynamodb tables
for i in `aws dynamodb list-tables | jq .'TableNames[]' -r`; do aws dynamodb delete-table --table-name $i; done;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment