Include volume encryption status in 'ec2_vol_facts' module (#19017)

This commit is contained in:
Andy Freeland 2016-12-09 07:01:13 -08:00 committed by Ryan Brown
parent e18bc0d6f0
commit cb9b5ab146

View file

@ -81,6 +81,7 @@ def get_volume_info(volume):
volume_info = {
'create_time': volume.create_time,
'id': volume.id,
'encrypted': volume.encrypted,
'iops': volume.iops,
'size': volume.size,
'snapshot_id': volume.snapshot_id,