mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Include volume encryption status in 'ec2_vol_facts' module (#19017)
This commit is contained in:
parent
e18bc0d6f0
commit
cb9b5ab146
1 changed files with 1 additions and 0 deletions
|
@ -81,6 +81,7 @@ def get_volume_info(volume):
|
||||||
volume_info = {
|
volume_info = {
|
||||||
'create_time': volume.create_time,
|
'create_time': volume.create_time,
|
||||||
'id': volume.id,
|
'id': volume.id,
|
||||||
|
'encrypted': volume.encrypted,
|
||||||
'iops': volume.iops,
|
'iops': volume.iops,
|
||||||
'size': volume.size,
|
'size': volume.size,
|
||||||
'snapshot_id': volume.snapshot_id,
|
'snapshot_id': volume.snapshot_id,
|
||||||
|
|
Loading…
Reference in a new issue