2013-11-28 04:10:24 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# This file is part of Ansible
|
|
|
|
#
|
|
|
|
# Ansible is free software: you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# Ansible is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with Ansible. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
DOCUMENTATION = '''
|
|
|
|
---
|
|
|
|
module: ec2_snapshot
|
|
|
|
short_description: creates a snapshot from an existing volume
|
|
|
|
description:
|
|
|
|
- creates an EC2 snapshot from an existing EBS volume
|
|
|
|
version_added: "1.5"
|
|
|
|
options:
|
|
|
|
region:
|
|
|
|
description:
|
|
|
|
- The AWS region to use. If not specified then the value of the EC2_REGION environment variable, if any, is used.
|
|
|
|
required: false
|
|
|
|
aliases: ['aws_region', 'ec2_region']
|
|
|
|
volume_id:
|
|
|
|
description:
|
|
|
|
- volume from which to take the snapshot
|
|
|
|
required: false
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- description to be applied to the snapshot
|
|
|
|
required: false
|
|
|
|
instance_id:
|
2014-02-05 12:11:06 +01:00
|
|
|
description:
|
2014-03-16 12:23:16 +01:00
|
|
|
- instance that has the required volume to snapshot mounted
|
2013-11-28 04:10:24 +01:00
|
|
|
required: false
|
|
|
|
device_name:
|
2014-02-05 12:11:06 +01:00
|
|
|
description:
|
2013-11-28 04:10:24 +01:00
|
|
|
- device name of a mounted volume to be snapshotted
|
|
|
|
required: false
|
2014-04-03 11:39:37 +02:00
|
|
|
snapshot_tags:
|
|
|
|
description:
|
2014-04-04 18:38:49 +02:00
|
|
|
- a hash/dictionary of tags to add to the snapshot
|
2014-04-03 11:39:37 +02:00
|
|
|
required: false
|
|
|
|
version_added: "1.6"
|
2014-10-26 21:26:33 +01:00
|
|
|
wait:
|
|
|
|
description:
|
|
|
|
- wait for the snapshot to be ready
|
|
|
|
choices: ['yes', 'no']
|
|
|
|
required: false
|
|
|
|
default: yes
|
|
|
|
version_added: "1.5.1"
|
|
|
|
wait_timeout:
|
|
|
|
description:
|
|
|
|
- how long before wait gives up, in seconds
|
|
|
|
- specify 0 to wait forever
|
|
|
|
required: false
|
|
|
|
default: 0
|
|
|
|
version_added: "1.5.1"
|
2014-05-01 05:08:38 +02:00
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- whether to add or create a snapshot
|
|
|
|
required: false
|
|
|
|
default: present
|
|
|
|
choices: ['absent', 'present']
|
|
|
|
version_added: "1.9"
|
|
|
|
snapshot_id:
|
|
|
|
description:
|
|
|
|
- snapshot id to remove
|
|
|
|
required: false
|
|
|
|
version_added: "1.9"
|
2015-04-15 19:56:33 +02:00
|
|
|
last_snapshot_min_age:
|
2014-09-30 13:14:43 +02:00
|
|
|
description:
|
2015-04-15 19:56:33 +02:00
|
|
|
- If the volume's most recent snapshot has started less than `last_snapshot_min_age' minutes ago, a new snapshot will not be created.
|
2014-09-30 13:14:43 +02:00
|
|
|
required: false
|
|
|
|
default: 0
|
|
|
|
version_added: "1.9"
|
2014-05-01 05:08:38 +02:00
|
|
|
|
2015-06-15 20:41:22 +02:00
|
|
|
author: "Will Thames (@willthames)"
|
2014-04-09 08:43:55 +02:00
|
|
|
extends_documentation_fragment: aws
|
2013-11-28 04:10:24 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = '''
|
|
|
|
# Simple snapshot of volume using volume_id
|
2014-12-01 21:14:57 +01:00
|
|
|
- ec2_snapshot:
|
2015-04-15 19:56:33 +02:00
|
|
|
volume_id: vol-abcdef12
|
2013-11-28 04:10:24 +01:00
|
|
|
description: snapshot of /data from DB123 taken 2013/11/28 12:18:32
|
|
|
|
|
|
|
|
# Snapshot of volume mounted on device_name attached to instance_id
|
2014-12-01 21:14:57 +01:00
|
|
|
- ec2_snapshot:
|
2013-11-28 04:10:24 +01:00
|
|
|
instance_id: i-12345678
|
|
|
|
device_name: /dev/sdb1
|
|
|
|
description: snapshot of /data from DB123 taken 2013/11/28 12:18:32
|
2014-04-04 18:38:49 +02:00
|
|
|
|
|
|
|
# Snapshot of volume with tagging
|
2014-12-01 21:14:57 +01:00
|
|
|
- ec2_snapshot:
|
2014-04-04 18:38:49 +02:00
|
|
|
instance_id: i-12345678
|
|
|
|
device_name: /dev/sdb1
|
|
|
|
snapshot_tags:
|
|
|
|
frequency: hourly
|
|
|
|
source: /data
|
2014-05-01 05:08:38 +02:00
|
|
|
|
|
|
|
# Remove a snapshot
|
|
|
|
- local_action:
|
|
|
|
module: ec2_snapshot
|
|
|
|
snapshot_id: snap-abcd1234
|
|
|
|
state: absent
|
2014-09-30 13:14:43 +02:00
|
|
|
|
|
|
|
# Create a snapshot only if the most recent one is older than 1 hour
|
|
|
|
- local_action:
|
|
|
|
module: ec2_snapshot
|
|
|
|
volume_id: vol-abcdef12
|
2015-04-15 19:56:33 +02:00
|
|
|
last_snapshot_min_age: 60
|
|
|
|
'''
|
2013-11-28 04:10:24 +01:00
|
|
|
|
|
|
|
import time
|
2015-04-15 19:56:33 +02:00
|
|
|
import datetime
|
2013-11-28 04:10:24 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
import boto.ec2
|
2015-04-02 01:16:54 +02:00
|
|
|
HAS_BOTO = True
|
2013-11-28 04:10:24 +01:00
|
|
|
except ImportError:
|
2015-04-02 01:16:54 +02:00
|
|
|
HAS_BOTO = False
|
|
|
|
|
2013-11-28 04:10:24 +01:00
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
# Find the most recent snapshot
|
|
|
|
def _get_snapshot_starttime(snap):
|
|
|
|
return datetime.datetime.strptime(snap.start_time, '%Y-%m-%dT%H:%M:%S.000Z')
|
2013-11-28 04:10:24 +01:00
|
|
|
|
2015-04-02 01:16:54 +02:00
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
def _get_most_recent_snapshot(snapshots, max_snapshot_age_secs=None, now=None):
|
|
|
|
"""
|
|
|
|
Gets the most recently created snapshot and optionally filters the result
|
|
|
|
if the snapshot is too old
|
|
|
|
:param snapshots: list of snapshots to search
|
|
|
|
:param max_snapshot_age_secs: filter the result if its older than this
|
|
|
|
:param now: simulate time -- used for unit testing
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
if len(snapshots) == 0:
|
|
|
|
return None
|
|
|
|
|
|
|
|
if not now:
|
|
|
|
now = datetime.datetime.utcnow()
|
2013-11-28 04:10:24 +01:00
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
youngest_snapshot = min(snapshots, key=_get_snapshot_starttime)
|
|
|
|
|
|
|
|
# See if the snapshot is younger that the given max age
|
|
|
|
snapshot_start = datetime.datetime.strptime(youngest_snapshot.start_time, '%Y-%m-%dT%H:%M:%S.000Z')
|
|
|
|
snapshot_age = now - snapshot_start
|
|
|
|
|
|
|
|
if max_snapshot_age_secs is not None:
|
|
|
|
if snapshot_age.total_seconds() > max_snapshot_age_secs:
|
|
|
|
return None
|
|
|
|
|
|
|
|
return youngest_snapshot
|
|
|
|
|
|
|
|
|
|
|
|
def _create_with_wait(snapshot, wait_timeout_secs, sleep_func=time.sleep):
|
|
|
|
"""
|
|
|
|
Wait for the snapshot to be created
|
|
|
|
:param snapshot:
|
|
|
|
:param wait_timeout_secs: fail this step after this many seconds
|
|
|
|
:param sleep_func:
|
|
|
|
:return:
|
|
|
|
"""
|
|
|
|
time_waited = 0
|
|
|
|
snapshot.update()
|
|
|
|
while snapshot.status != 'completed':
|
|
|
|
sleep_func(3)
|
|
|
|
snapshot.update()
|
|
|
|
time_waited += 3
|
|
|
|
if wait_timeout_secs and time_waited > wait_timeout_secs:
|
|
|
|
return False
|
|
|
|
return True
|
|
|
|
|
|
|
|
|
|
|
|
def create_snapshot(module, ec2, state=None, description=None, wait=None,
|
|
|
|
wait_timeout=None, volume_id=None, instance_id=None,
|
|
|
|
snapshot_id=None, device_name=None, snapshot_tags=None,
|
|
|
|
last_snapshot_min_age=None):
|
2014-09-30 13:14:43 +02:00
|
|
|
snapshot = None
|
|
|
|
changed = False
|
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
required = [volume_id, snapshot_id, instance_id]
|
|
|
|
if required.count(None) != len(required) - 1: # only 1 must be set
|
2015-07-28 22:02:49 +02:00
|
|
|
module.fail_json(msg='One and only one of volume_id or instance_id or snapshot_id must be specified')
|
2013-11-28 04:10:24 +01:00
|
|
|
if instance_id and not device_name or device_name and not instance_id:
|
2015-07-28 22:02:49 +02:00
|
|
|
module.fail_json(msg='Instance ID and device name must both be specified')
|
2013-11-28 04:10:24 +01:00
|
|
|
|
|
|
|
if instance_id:
|
|
|
|
try:
|
|
|
|
volumes = ec2.get_all_volumes(filters={'attachment.instance-id': instance_id, 'attachment.device': device_name})
|
|
|
|
except boto.exception.BotoServerError, e:
|
|
|
|
module.fail_json(msg = "%s: %s" % (e.error_code, e.error_message))
|
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
if not volumes:
|
|
|
|
module.fail_json(msg="Could not find volume with name %s attached to instance %s" % (device_name, instance_id))
|
|
|
|
|
|
|
|
volume_id = volumes[0].id
|
|
|
|
|
2014-05-01 05:08:38 +02:00
|
|
|
if state == 'absent':
|
|
|
|
if not snapshot_id:
|
|
|
|
module.fail_json(msg = 'snapshot_id must be set when state is absent')
|
|
|
|
try:
|
|
|
|
ec2.delete_snapshot(snapshot_id)
|
|
|
|
except boto.exception.BotoServerError, e:
|
|
|
|
# exception is raised if snapshot does not exist
|
|
|
|
if e.error_code == 'InvalidSnapshot.NotFound':
|
|
|
|
module.exit_json(changed=False)
|
|
|
|
else:
|
|
|
|
module.fail_json(msg = "%s: %s" % (e.error_code, e.error_message))
|
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
# successful delete
|
|
|
|
module.exit_json(changed=True)
|
|
|
|
|
|
|
|
if last_snapshot_min_age > 0:
|
2014-09-30 13:14:43 +02:00
|
|
|
try:
|
|
|
|
current_snapshots = ec2.get_all_snapshots(filters={'volume_id': volume_id})
|
|
|
|
except boto.exception.BotoServerError, e:
|
|
|
|
module.fail_json(msg="%s: %s" % (e.error_code, e.error_message))
|
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
last_snapshot_min_age = last_snapshot_min_age * 60 # Convert to seconds
|
|
|
|
snapshot = _get_most_recent_snapshot(current_snapshots,
|
|
|
|
max_snapshot_age_secs=last_snapshot_min_age)
|
2013-11-28 04:10:24 +01:00
|
|
|
try:
|
2014-09-30 13:14:43 +02:00
|
|
|
# Create a new snapshot if we didn't find an existing one to use
|
|
|
|
if snapshot is None:
|
|
|
|
snapshot = ec2.create_snapshot(volume_id, description=description)
|
|
|
|
changed = True
|
2014-03-04 20:37:15 +01:00
|
|
|
if wait:
|
2015-04-15 19:56:33 +02:00
|
|
|
if not _create_with_wait(snapshot, wait_timeout):
|
|
|
|
module.fail_json(msg='Timed out while creating snapshot.')
|
|
|
|
if snapshot_tags:
|
|
|
|
for k, v in snapshot_tags.items():
|
|
|
|
snapshot.add_tag(k, v)
|
2013-11-28 04:10:24 +01:00
|
|
|
except boto.exception.BotoServerError, e:
|
2014-09-30 13:14:43 +02:00
|
|
|
module.fail_json(msg="%s: %s" % (e.error_code, e.error_message))
|
2013-11-28 04:10:24 +01:00
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
module.exit_json(changed=changed,
|
|
|
|
snapshot_id=snapshot.id,
|
|
|
|
volume_id=snapshot.volume_id,
|
|
|
|
volume_size=snapshot.volume_size,
|
|
|
|
tags=snapshot.tags.copy())
|
|
|
|
|
|
|
|
|
|
|
|
def create_snapshot_ansible_module():
|
|
|
|
argument_spec = ec2_argument_spec()
|
|
|
|
argument_spec.update(
|
|
|
|
dict(
|
|
|
|
volume_id = dict(),
|
|
|
|
description = dict(),
|
|
|
|
instance_id = dict(),
|
|
|
|
snapshot_id = dict(),
|
|
|
|
device_name = dict(),
|
|
|
|
wait = dict(type='bool', default=True),
|
|
|
|
wait_timeout = dict(type='int', default=0),
|
|
|
|
last_snapshot_min_age = dict(type='int', default=0),
|
|
|
|
snapshot_tags = dict(type='dict', default=dict()),
|
|
|
|
state = dict(choices=['absent','present'], default='present'),
|
|
|
|
)
|
|
|
|
)
|
|
|
|
module = AnsibleModule(argument_spec=argument_spec)
|
|
|
|
return module
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
module = create_snapshot_ansible_module()
|
|
|
|
|
|
|
|
if not HAS_BOTO:
|
|
|
|
module.fail_json(msg='boto required for this module')
|
|
|
|
|
|
|
|
volume_id = module.params.get('volume_id')
|
|
|
|
snapshot_id = module.params.get('snapshot_id')
|
|
|
|
description = module.params.get('description')
|
|
|
|
instance_id = module.params.get('instance_id')
|
|
|
|
device_name = module.params.get('device_name')
|
|
|
|
wait = module.params.get('wait')
|
|
|
|
wait_timeout = module.params.get('wait_timeout')
|
|
|
|
last_snapshot_min_age = module.params.get('last_snapshot_min_age')
|
|
|
|
snapshot_tags = module.params.get('snapshot_tags')
|
|
|
|
state = module.params.get('state')
|
|
|
|
|
|
|
|
ec2 = ec2_connect(module)
|
|
|
|
|
|
|
|
create_snapshot(
|
|
|
|
module=module,
|
|
|
|
state=state,
|
|
|
|
description=description,
|
|
|
|
wait=wait,
|
|
|
|
wait_timeout=wait_timeout,
|
|
|
|
ec2=ec2,
|
|
|
|
volume_id=volume_id,
|
|
|
|
instance_id=instance_id,
|
|
|
|
snapshot_id=snapshot_id,
|
|
|
|
device_name=device_name,
|
|
|
|
snapshot_tags=snapshot_tags,
|
|
|
|
last_snapshot_min_age=last_snapshot_min_age
|
|
|
|
)
|
2013-11-28 04:10:24 +01:00
|
|
|
|
|
|
|
# import module snippets
|
|
|
|
from ansible.module_utils.basic import *
|
|
|
|
from ansible.module_utils.ec2 import *
|
|
|
|
|
2015-04-15 19:56:33 +02:00
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|