Created
February 13, 2018 21:24
-
-
Save tujlaky/bc9458b8c93a5f07c04265432ec5993b to your computer and use it in GitHub Desktop.
Script for delete all dynamodb tables
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
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