mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-31 13:29:08 -07:00
ec2_ami: Properly delete snapshots (#39606)
This commit is contained in:
parent
afdc2364f2
commit
910bc892c6
2 changed files with 2 additions and 1 deletions
|
@ -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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue