Skip to content

Instantly share code, notes, and snippets.

@hendrixroa
Forked from pahud/delete_all_awslogs.sh.md
Created August 3, 2018 04:45
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hendrixroa/f56d7f1a2c1e6cbd1d33132ff4f61a42 to your computer and use it in GitHub Desktop.
Save hendrixroa/f56d7f1a2c1e6cbd1d33132ff4f61a42 to your computer and use it in GitHub Desktop.
delete all aws log groups
aws logs describe-log-groups --query 'logGroups[*].logGroupName' --output table | awk '{print $2}' | grep -v ^$ | while read x; do aws logs delete-log-group --log-group-name $x; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment