Created
November 15, 2017 14:20
-
-
Save atoa/e8231d08e66c92de53b2a8e7356f50ee to your computer and use it in GitHub Desktop.
delete empty cloudwatch log groups
This file contains 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
#!/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 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks! works perfect