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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
|
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Copyright: Ansible Project
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)
DOCUMENTATION = r"""
---
module: ec2_snapshot
version_added: 1.0.0
short_description: Creates a snapshot from an existing volume
description:
- Creates an EC2 snapshot from an existing EBS volume.
options:
volume_id:
description:
- Volume from which to take the snapshot.
required: false
type: str
description:
description:
- Description to be applied to the snapshot.
required: false
type: str
instance_id:
description:
- Instance that has the required volume to snapshot mounted.
required: false
type: str
device_name:
description:
- Device name of a mounted volume to be snapshotted.
required: false
type: str
snapshot_tags:
description:
- A dictionary of tags to add to the snapshot.
- If the volume has a C(Name) tag this will be automatically added to the
snapshot.
type: dict
required: false
default: {}
wait:
description:
- Wait for the snapshot to be ready.
type: bool
required: false
default: true
wait_timeout:
description:
- How long before wait gives up, in seconds.
required: false
default: 600
type: int
state:
description:
- Whether to add or create a snapshot.
required: false
default: present
choices: ['absent', 'present']
type: str
snapshot_id:
description:
- Snapshot id to remove.
required: false
type: str
last_snapshot_min_age:
description:
- If the volume's most recent snapshot has started less than I(last_snapshot_min_age) minutes ago, a new snapshot will not be created.
required: false
default: 0
type: int
modify_create_vol_permission:
description:
- If set to C(true), ec2 snapshot's createVolumePermissions can be modified.
required: false
type: bool
version_added: 6.1.0
purge_create_vol_permission:
description:
- Whether unspecified group names or user IDs should be removed from the snapshot createVolumePermission.
- Must set I(modify_create_vol_permission) to C(True) for when I(purge_create_vol_permission) is set to C(True).
required: False
type: bool
default: False
version_added: 6.1.0
group_names:
description:
- The group to be added or removed. The possible value is C(all).
- Mutually exclusive with I(user_ids).
required: false
type: list
elements: str
choices: ["all"]
version_added: 6.1.0
user_ids:
description:
- The account user IDs to be added or removed.
- If createVolumePermission on snapshot is currently set to Public i.e. I(group_names=all),
providing I(user_ids) will not make createVolumePermission Private unless I(create_volume_permission) is set to C(true).
- Mutually exclusive with I(group_names).
required: false
type: list
elements: str
version_added: 6.1.0
author: "Will Thames (@willthames)"
extends_documentation_fragment:
- amazon.aws.common.modules
- amazon.aws.region.modules
- amazon.aws.boto3
"""
EXAMPLES = r"""
# Simple snapshot of volume using volume_id
- amazon.aws.ec2_snapshot:
volume_id: vol-abcdef12
description: snapshot of /data from DB123 taken 2013/11/28 12:18:32
# Snapshot of volume mounted on device_name attached to instance_id
- amazon.aws.ec2_snapshot:
instance_id: i-12345678
device_name: /dev/sdb1
description: snapshot of /data from DB123 taken 2013/11/28 12:18:32
# Snapshot of volume with tagging
- amazon.aws.ec2_snapshot:
instance_id: i-12345678
device_name: /dev/sdb1
snapshot_tags:
frequency: hourly
source: /data
# Remove a snapshot
- amazon.aws.ec2_snapshot:
snapshot_id: snap-abcd1234
state: absent
# Create a snapshot only if the most recent one is older than 1 hour
- amazon.aws.ec2_snapshot:
volume_id: vol-abcdef12
last_snapshot_min_age: 60
- name: Reset snapshot createVolumePermission (change permission to "Private")
amazon.aws.ec2_snapshot:
snapshot_id: snap-06a6f641234567890
modify_create_vol_permission: true
purge_create_vol_permission: true
- name: Modify snapshot createVolmePermission to add user IDs (specify purge_create_vol_permission=true to change permssion to "Private")
amazon.aws.ec2_snapshot:
snapshot_id: snap-06a6f641234567890
modify_create_vol_permission: true
user_ids:
- '123456789012'
- '098765432109'
- name: Modify snapshot createVolmePermission - remove all except specified user_ids
amazon.aws.ec2_snapshot:
snapshot_id: snap-06a6f641234567890
modify_create_vol_permission: true
purge_create_vol_permission: true
user_ids:
- '123456789012'
- name: Replace (purge existing) snapshot createVolmePermission annd add user IDs
amazon.aws.ec2_snapshot:
snapshot_id: snap-06a6f641234567890
modify_create_vol_permission: true
purge_create_vol_permission: true
user_ids:
- '111111111111'
- name: Modify snapshot createVolmePermission - make createVolumePermission "Public"
amazon.aws.ec2_snapshot:
snapshot_id: snap-06a6f641234567890
modify_create_vol_permission: true
purge_create_vol_permission: true
group_names:
- all
"""
RETURN = r"""
snapshot_id:
description: The ID of the snapshot. Each snapshot receives a unique identifier when it is created.
type: str
returned: always
sample: snap-01234567
tags:
description: Any tags assigned to the snapshot.
type: dict
returned: always
sample: "{ 'Name': 'instance-name' }"
volume_id:
description: The ID of the volume that was used to create the snapshot.
type: str
returned: always
sample: vol-01234567
volume_size:
description: The size of the volume, in GiB.
type: int
returned: always
sample: 8
"""
import datetime
try:
import botocore
except ImportError:
pass # Taken care of by AnsibleAWSModule
from ansible.module_utils.common.dict_transformations import camel_dict_to_snake_dict
from ansible_collections.amazon.aws.plugins.module_utils.botocore import is_boto3_error_code
from ansible_collections.amazon.aws.plugins.module_utils.modules import AnsibleAWSModule
from ansible_collections.amazon.aws.plugins.module_utils.retries import AWSRetry
from ansible_collections.amazon.aws.plugins.module_utils.tagging import ansible_dict_to_boto3_tag_list
from ansible_collections.amazon.aws.plugins.module_utils.tagging import boto3_tag_list_to_ansible_dict
from ansible_collections.amazon.aws.plugins.module_utils.transformation import ansible_dict_to_boto3_filter_list
from ansible_collections.amazon.aws.plugins.module_utils.waiters import get_waiter
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.now(datetime.timezone.utc)
youngest_snapshot = max(snapshots, key=lambda s: s["StartTime"])
snapshot_start = youngest_snapshot["StartTime"]
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 get_volume_by_instance(module, ec2, device_name, instance_id):
try:
_filter = {"attachment.instance-id": instance_id, "attachment.device": device_name}
volumes = ec2.describe_volumes(aws_retry=True, Filters=ansible_dict_to_boto3_filter_list(_filter))["Volumes"]
except (botocore.exceptions.BotoCoreError, botocore.exceptions.ClientError) as e:
module.fail_json_aws(e, msg="Failed to describe Volume")
if not volumes:
module.fail_json(msg=f"Could not find volume with name {device_name} attached to instance {instance_id}")
volume = volumes[0]
return volume
def get_volume_by_id(module, ec2, volume):
try:
volumes = ec2.describe_volumes(
aws_retry=True,
VolumeIds=[volume],
)["Volumes"]
except (botocore.exceptions.BotoCoreError, botocore.exceptions.ClientError) as e:
module.fail_json_aws(e, msg="Failed to describe Volume")
if not volumes:
module.fail_json(msg=f"Could not find volume with id {volume}")
volume = volumes[0]
return volume
@AWSRetry.jittered_backoff()
def _describe_snapshots(ec2, **params):
paginator = ec2.get_paginator("describe_snapshots")
return paginator.paginate(**params).build_full_result()
# Handle SnapshotCreationPerVolumeRateExceeded separately because we need a much
# longer delay than normal
@AWSRetry.jittered_backoff(catch_extra_error_codes=["SnapshotCreationPerVolumeRateExceeded"], delay=15)
def _create_snapshot(ec2, **params):
# Fast retry on common failures ('global' rate limits)
return ec2.create_snapshot(aws_retry=True, **params)
def get_snapshots_by_volume(module, ec2, volume_id):
_filter = {"volume-id": volume_id}
try:
results = _describe_snapshots(ec2, Filters=ansible_dict_to_boto3_filter_list(_filter))
except (botocore.exceptions.BotoCoreError, botocore.exceptions.ClientError) as e:
module.fail_json_aws(e, msg="Failed to describe snapshots from volume")
return results["Snapshots"]
def create_snapshot(
module,
ec2,
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,
):
snapshot = None
changed = False
if instance_id:
volume = get_volume_by_instance(module, ec2, device_name, instance_id)
volume_id = volume["VolumeId"]
else:
volume = get_volume_by_id(module, ec2, volume_id)
if "Tags" not in volume:
volume["Tags"] = {}
if last_snapshot_min_age > 0:
current_snapshots = get_snapshots_by_volume(module, ec2, volume_id)
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)
# Create a new snapshot if we didn't find an existing one to use
if snapshot is None:
volume_tags = boto3_tag_list_to_ansible_dict(volume["Tags"])
volume_name = volume_tags.get("Name")
_tags = dict()
if volume_name:
_tags["Name"] = volume_name
if snapshot_tags:
_tags.update(snapshot_tags)
params = {"VolumeId": volume_id}
if description:
params["Description"] = description
if _tags:
params["TagSpecifications"] = [
{
"ResourceType": "snapshot",
"Tags": ansible_dict_to_boto3_tag_list(_tags),
}
]
try:
if module.check_mode:
module.exit_json(
changed=True,
msg="Would have created a snapshot if not in check mode",
volume_id=volume["VolumeId"],
volume_size=volume["Size"],
)
snapshot = _create_snapshot(ec2, **params)
except (botocore.exceptions.BotoCoreError, botocore.exceptions.ClientError) as e:
module.fail_json_aws(e, msg="Failed to create snapshot")
changed = True
if wait:
waiter = get_waiter(ec2, "snapshot_completed")
try:
waiter.wait(SnapshotIds=[snapshot["SnapshotId"]], WaiterConfig=dict(Delay=3, MaxAttempts=wait_timeout // 3))
except botocore.exceptions.WaiterError as e:
module.fail_json_aws(e, msg="Timed out while creating snapshot")
except (botocore.exceptions.BotoCoreError, botocore.exceptions.ClientError) as e:
module.fail_json_aws(e, msg="Error while waiting for snapshot creation")
_tags = boto3_tag_list_to_ansible_dict(snapshot["Tags"])
_snapshot = camel_dict_to_snake_dict(snapshot)
_snapshot["tags"] = _tags
results = {
"snapshot_id": snapshot["SnapshotId"],
"volume_id": snapshot["VolumeId"],
"volume_size": snapshot["VolumeSize"],
"tags": _tags,
"snapshots": [_snapshot],
}
module.exit_json(changed=changed, **results)
def delete_snapshot(module, ec2, snapshot_id):
if module.check_mode:
try:
_describe_snapshots(ec2, SnapshotIds=[(snapshot_id)])
module.exit_json(changed=True, msg="Would have deleted snapshot if not in check mode")
except is_boto3_error_code("InvalidSnapshot.NotFound"):
module.exit_json(changed=False, msg="Invalid snapshot ID - snapshot not found")
try:
ec2.delete_snapshot(aws_retry=True, SnapshotId=snapshot_id)
except is_boto3_error_code("InvalidSnapshot.NotFound"):
module.exit_json(changed=False)
except (
botocore.exceptions.BotoCoreError,
botocore.exceptions.ClientError,
) as e: # pylint: disable=duplicate-except
module.fail_json_aws(e, msg="Failed to delete snapshot")
# successful delete
module.exit_json(changed=True)
def _describe_snapshot_attribute(module, ec2, snapshot_id):
try:
response = ec2.describe_snapshot_attribute(Attribute="createVolumePermission", SnapshotId=snapshot_id)
except (
botocore.exceptions.BotoCoreError,
botocore.exceptions.ClientError,
) as e: # pylint: disable=duplicate-except
module.fail_json_aws(e, msg="Failed to describe snapshot attribute createVolumePermission")
return response["CreateVolumePermissions"]
def build_modify_createVolumePermission_params(module):
snapshot_id = module.params.get("snapshot_id")
user_ids = module.params.get("user_ids")
group_names = module.params.get("group_names")
if not user_ids and not group_names:
module.fail_json(msg="Please provide either Group IDs or User IDs to modify permissions")
params = {
"Attribute": "createVolumePermission",
"OperationType": "add",
"SnapshotId": snapshot_id,
"GroupNames": group_names,
"UserIds": user_ids,
}
# remove empty value params
params = {k: v for k, v in params.items() if v}
return params
def check_user_or_group_update_needed(module, ec2):
existing_create_vol_permission = _describe_snapshot_attribute(module, ec2, module.params.get("snapshot_id"))
purge_permission = module.params.get("purge_create_vol_permission")
supplied_group_names = module.params.get("group_names")
supplied_user_ids = module.params.get("user_ids")
# if createVolumePermission is already "Public", adding "user_ids" is not needed
if any(item.get("Group") == "all" for item in existing_create_vol_permission) and not purge_permission:
return False
if supplied_group_names:
existing_group_names = {item.get("Group") for item in existing_create_vol_permission or []}
if set(supplied_group_names) == set(existing_group_names):
return False
else:
return True
if supplied_user_ids:
existing_user_ids = {item.get("UserId") for item in existing_create_vol_permission or []}
if set(supplied_user_ids) == set(existing_user_ids):
return False
else:
return True
if purge_permission and existing_create_vol_permission == []:
return False
return True
def _modify_snapshot_createVolumePermission(module, ec2, snapshot_id, purge_create_vol_permission):
update_needed = check_user_or_group_update_needed(module, ec2)
if not update_needed:
module.exit_json(changed=False, msg="Supplied CreateVolumePermission already applied, update not needed")
if purge_create_vol_permission is True:
_reset_snapshpot_attribute(module, ec2, snapshot_id)
if not module.params.get("user_ids") and not module.params.get("group_names"):
module.exit_json(changed=True, msg="Reset createVolumePermission successfully")
params = build_modify_createVolumePermission_params(module)
if module.check_mode:
module.exit_json(changed=True, msg="Would have modified CreateVolumePermission")
try:
ec2.modify_snapshot_attribute(**params)
except (
botocore.exceptions.BotoCoreError,
botocore.exceptions.ClientError,
) as e: # pylint: disable=duplicate-except
module.fail_json_aws(e, msg="Failed to modify createVolumePermission")
module.exit_json(changed=True, msg="Successfully modified CreateVolumePermission")
def _reset_snapshpot_attribute(module, ec2, snapshot_id):
if module.check_mode:
module.exit_json(changed=True, msg="Would have reset CreateVolumePermission")
try:
response = ec2.reset_snapshot_attribute(Attribute="createVolumePermission", SnapshotId=snapshot_id)
except (
botocore.exceptions.BotoCoreError,
botocore.exceptions.ClientError,
) as e: # pylint: disable=duplicate-except
module.fail_json_aws(e, msg="Failed to reset createVolumePermission")
def create_snapshot_ansible_module():
argument_spec = 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=600),
last_snapshot_min_age=dict(type="int", default=0),
snapshot_tags=dict(type="dict", default=dict()),
state=dict(choices=["absent", "present"], default="present"),
modify_create_vol_permission=dict(type="bool"),
purge_create_vol_permission=dict(type="bool", default=False),
user_ids=dict(type="list", elements="str"),
group_names=dict(type="list", elements="str", choices=["all"]),
)
mutually_exclusive = [
("instance_id", "snapshot_id", "volume_id"),
("group_names", "user_ids"),
]
required_if = [
("state", "absent", ("snapshot_id",)),
("purge_create_vol_permission", True, ("modify_create_vol_permission",)),
]
required_one_of = [
("instance_id", "snapshot_id", "volume_id"),
]
required_together = [
("instance_id", "device_name"),
]
module = AnsibleAWSModule(
argument_spec=argument_spec,
mutually_exclusive=mutually_exclusive,
required_if=required_if,
required_one_of=required_one_of,
required_together=required_together,
supports_check_mode=True,
)
return module
def main():
module = create_snapshot_ansible_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")
modify_create_vol_permission = module.params.get("modify_create_vol_permission")
purge_create_vol_permission = module.params.get("purge_create_vol_permission")
ec2 = module.client("ec2", retry_decorator=AWSRetry.jittered_backoff(retries=10))
if state == "absent":
delete_snapshot(
module=module,
ec2=ec2,
snapshot_id=snapshot_id,
)
elif modify_create_vol_permission is True:
_modify_snapshot_createVolumePermission(module, ec2, snapshot_id, purge_create_vol_permission)
elif state == "present":
create_snapshot(
module=module,
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,
)
if __name__ == "__main__":
main()
|