Skip to content

Instantly share code, notes, and snippets.

@atoa
Created November 15, 2017 14:20
Show Gist options
  • Select an option

  • Save atoa/e8231d08e66c92de53b2a8e7356f50ee to your computer and use it in GitHub Desktop.

Select an option

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
@pal
Copy link
Copy Markdown

pal commented Nov 25, 2021

Awesome, thanks!

@DanielCarmel
Copy link
Copy Markdown

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