Skip to content

Instantly share code, notes, and snippets.

View cinderellagarage's full-sized avatar

Matt Poirier cinderellagarage

View GitHub Profile
@cinderellagarage
cinderellagarage / snapshots.py
Created May 18, 2017 15:19 — forked from Eyjafjallajokull/README.md
AWS EBS - Find unused snapshots - this script generates csv raport about snapshot usage
import re
import boto3
import csv
from botocore.exceptions import ClientError
ec2 = boto3.client('ec2')
def get_snapshots():
return ec2.describe_snapshots(OwnerIds=['self'])['Snapshots']