Skip to content

Instantly share code, notes, and snippets.

@atoa
Created November 15, 2017 14:20
Show Gist options
  • Save atoa/e8231d08e66c92de53b2a8e7356f50ee to your computer and use it in GitHub Desktop.
Save atoa/e8231d08e66c92de53b2a8e7356f50ee to your computer and use it in GitHub Desktop.
delete empty cloudwatch log groups
#!/usr/bin/env sh
# AWS cli delete empty cloudwatch log groups
aws logs describe-log-groups \
--query 'logGroups[?storedBytes == `0`].logGroupName' --output text | \
xargs -r -n1 aws logs delete-log-group --log-group-name
@DanielCarmel
Copy link

DanielCarmel commented Feb 28, 2023

Thanks! works perfect

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment