ec2_ami: Properly delete snapshots (#39606)

pull/39622/merge
Sloane Hertel 7 years ago committed by Ryan Brown
parent afdc2364f2
commit 910bc892c6

@ -496,7 +496,7 @@ def deregister_image(module, connection):
snapshots = []
if 'BlockDeviceMappings' in image:
for mapping in image.get('BlockDeviceMappings'):
snapshot_id = mapping.get('SnapshotId')
snapshot_id = mapping.get('Ebs', {}).get('SnapshotId')
if snapshot_id is not None:
snapshots.append(snapshot_id)

@ -158,6 +158,7 @@
that:
- "result.changed"
- "'image_id' not in result"
- "result.snapshots_deleted"
# ============================================================

Loading…
Cancel
Save