From e744c838081cc2b3db308809d161f2c8393068d6 Mon Sep 17 00:00:00 2001 From: Per-Henrik Lundblom Date: Wed, 17 Oct 2018 18:31:31 +0200 Subject: [PATCH] [aws] ec2_vol_facts: only access volume tags when set (#46801) --- lib/ansible/modules/cloud/amazon/ec2_vol_facts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ansible/modules/cloud/amazon/ec2_vol_facts.py b/lib/ansible/modules/cloud/amazon/ec2_vol_facts.py index 35f095625c..353d6b5441 100644 --- a/lib/ansible/modules/cloud/amazon/ec2_vol_facts.py +++ b/lib/ansible/modules/cloud/amazon/ec2_vol_facts.py @@ -92,7 +92,7 @@ def get_volume_info(volume, region): 'status': attachment[0]["state"] if len(attachment) > 0 else None, 'delete_on_termination': attachment[0]["delete_on_termination"] if len(attachment) > 0 else None }, - 'tags': boto3_tag_list_to_ansible_dict(volume['tags']) + 'tags': boto3_tag_list_to_ansible_dict(volume['tags']) if "tags" in volume else None } return volume_info