m346/KN08/cleanup.py
Marcello Calisto 4db9fcd3ab Initial commit
2023-08-26 13:53:14 +02:00

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'])