Skip to main content

Prune EBS snapshots based on a simple backup retention policy

Project description

Prune EBS Snapshots based on a simple backup retention policy

configuration
-------------

This script uses the boto3 library to communicate with AWS. You must configure your AWS credentials using one
of the methods supported by boto3. For full details see:

https://boto3.readthedocs.io/en/latest/guide/configuration.html#guide-configuration

The AWS user must have appropriate permissions. Here is an example AWS policy:

{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1422916495000",
"Effect": "Allow",
"Action": [
"ec2:DeleteSnapshot",
"ec2:DescribeSnapshots"
],
"Resource": [
"*"
]
}
]
}

usage
-----

Always use the ``--help`` option to see the most up-to-date options available.

Basic usage is:

prune-ebs-snapshots [options] volume_id tag_name tag_value

``volume_id`` specifies which EBS volume to prune snapshots for

``tag_name`` and ``tag_value`` specify a tag and corresponding value that must be present on all snapshots considered for pruning.
Typically you would configure a backup script to include this particular tag value on all snapshots created for backup purposes.
Snapshots created for other purposes would not have this tag, and therefore would not be deleted by this pruning script, or considered
as part of the backup set for determining which snapshots to delete.

Options are used to specify how many daily, weekly, monthly and yearly snapshots to retain. Use ``--help`` for more details.


Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

prune-ebs-snapshots-0.2.0.tar.gz (7.3 kB view hashes)

Uploaded Source

Built Distribution

prune_ebs_snapshots-0.2.0-py2.py3-none-any.whl (10.6 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page