Created
April 4, 2018 08:07
-
-
Save zgolus/116bbc12e97c74502dfc0d994b607fd6 to your computer and use it in GitHub Desktop.
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
import boto3 | |
logs = boto3.client('logs') | |
for lg in logs.get_paginator('describe_log_groups').paginate().search('logGroups'): | |
logs.put_retention_policy(logGroupName=lg['logGroupName'], retentionInDays=7) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment