mirror of
https://gitlab.com/ser-cal/m346.git
synced 2024-11-22 19:41:57 +01:00
26 lines
743 B
Python
26 lines
743 B
Python
|
import boto3
|
||
|
import re
|
||
|
import datetime
|
||
|
|
||
|
ec = boto3.client('ec2')
|
||
|
|
||
|
"""
|
||
|
This function looks at *all* snapshots that have a "DeleteOn" tag containing
|
||
|
the current day formatted as YYYY-MM-DD. This function should be run at least
|
||
|
daily.
|
||
|
"""
|
||
|
|
||
|
def lambda_handler(event, context):
|
||
|
account_ids = list()
|
||
|
|
||
|
delete_on = datetime.date.today().strftime('%Y-%m-%d')
|
||
|
filters = [
|
||
|
{'Name': 'tag-key', 'Values': ['DeleteOn']},
|
||
|
{'Name': 'tag-value', 'Values': [delete_on]},
|
||
|
]
|
||
|
snapshot_response = ec.describe_snapshots(OwnerIds=account_ids, Filters=filters)
|
||
|
|
||
|
|
||
|
for snap in snapshot_response['Snapshots']:
|
||
|
print ("Deleting snapshot %s" % snap['SnapshotId'])
|
||
|
ec.delete_snapshot(SnapshotId=snap['SnapshotId'])
|