forked from chef-boneyard/lambda_ebs_snapshot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschedule-ebs-snapshot-backups.py
93 lines (77 loc) · 2.88 KB
/
schedule-ebs-snapshot-backups.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# Copyright 2015 Ryan S Brown
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""
This function creates scheduled snapshots and adds tags: BackupTag and
DeleteOn - the current day formatted as YYYY-MM-DD.
"""
import boto3
import datetime
import os
ec = boto3.client("ec2")
if "BACKUP_TAG" in os.environ:
tag = os.environ["BACKUP_TAG"]
else:
tag = "Backup"
if "BACKUP_RETENTION" in os.environ:
ret_period = os.environ["BACKUP_RETENTION"]
else:
ret_period = "7"
# calculate retention in minutes
if "d" in ret_period:
retention = 24 * 60 * int(ret_period.split("d")[0])
elif "h" in ret_period:
retention = 60 * int(ret_period.split("h")[0])
else:
retention = int(ret_period)
def lambda_handler(event, context):
reservations = ec.describe_instances(
Filters=[{"Name": "tag:%s" % tag, "Values": ["true", "yes", "1"]}]
).get("Reservations", [])
instances = sum([[i for i in r["Instances"]] for r in reservations], [])
print "Found %d instances with tag %s that need backing up" % (len(instances), tag)
for instance in instances:
for dev in instance["BlockDeviceMappings"]:
if dev.get("Ebs", None) is None:
continue
vol_id = dev["Ebs"]["VolumeId"]
try:
instance_name = [i for i in instance["Tags"] if i["Key"] == "Name"][0][
"Value"
]
except IndexError:
instance_name = instance["InstanceId"]
print "Found EBS volume %s on instance %s (%s)" % (
vol_id,
instance["InstanceId"],
instance_name,
)
snap = ec.create_snapshot(VolumeId=vol_id)
delete_date = datetime.datetime.utcnow() + datetime.timedelta(
minutes=retention
)
delete_fmt = delete_date.strftime("%Y-%m-%d-%H-%M")
print "Retaining snapshot %s of volume %s from instance %s at %s" % (
snap["SnapshotId"],
vol_id,
instance["InstanceId"],
delete_fmt,
)
ec.create_tags(
Resources=[snap["SnapshotId"]],
Tags=[
{"Key": "BackupTag", "Value": tag},
{"Key": "DeleteOn", "Value": delete_fmt},
{"Key": "Name", "Value": instance_name},
],
)