Created
November 6, 2013 21:33
-
-
Save kjoconnor/7344485 to your computer and use it in GitHub Desktop.
boto script to delete snapshots matching a filter and older than X days
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 sys | |
from boto.ec2 import connect_to_region | |
from datetime import datetime, timedelta | |
try: | |
days = int(sys.argv[1]) | |
except IndexError: | |
days = 7 | |
delete_time = datetime.utcnow() - timedelta(days=days) | |
filters = { | |
'tag-key': 'mybackups' | |
} | |
print 'Deleting any snapshots older than {days} days'.format(days=days) | |
ec2 = connect_to_region('us-west-1') | |
snapshots = ec2.get_all_snapshots(filters=filters) | |
deletion_counter = 0 | |
size_counter = 0 | |
for snapshot in snapshots: | |
start_time = datetime.strptime( | |
snapshot.start_time, | |
'%Y-%m-%dT%H:%M:%S.000Z' | |
) | |
if start_time < delete_time: | |
print 'Deleting {id}'.format(id=snapshot.id) | |
deletion_counter = deletion_counter + 1 | |
size_counter = size_counter + snapshot.volume_size | |
# Just to make sure you're reading! | |
snapshot.delete(dry_run=True) | |
print 'Deleted {number} snapshots totalling {size} GB'.format( | |
number=deletion_counter, | |
size=size_counter | |
) |
This is helpful. How can we do this for RDS manual snapshots with for each loop for all regions.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thanks. How can I use this script delete old snapshots except last two?