Skip to content

Instantly share code, notes, and snippets.

View pauloconnor's full-sized avatar

Paul O'Connor pauloconnor

View GitHub Profile
@luhn
luhn / cleanup.py
Last active March 12, 2023 11:54
An AWS Lambda function to delete old AMIs.
"""
Code adapted from and inspired by http://blog.ranman.org/cleaning-up-aws-with-boto3/.
"""
import os
import re
from datetime import datetime, timedelta
import boto3