From a1fdff4c9770d208bf40047c30dad2899602f784 Mon Sep 17 00:00:00 2001 From: nonshankus Date: Sun, 28 Feb 2016 14:36:56 +0100 Subject: [PATCH] Adding missing attributes regarding the hosted zone. --- lib/ansible/modules/extras/cloud/amazon/ec2_elb_facts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/ansible/modules/extras/cloud/amazon/ec2_elb_facts.py b/lib/ansible/modules/extras/cloud/amazon/ec2_elb_facts.py index 8e683ad316d..094e28366ee 100644 --- a/lib/ansible/modules/extras/cloud/amazon/ec2_elb_facts.py +++ b/lib/ansible/modules/extras/cloud/amazon/ec2_elb_facts.py @@ -134,6 +134,8 @@ def get_elb_info(connection,elb): 'name': elb.name, 'zones': elb.availability_zones, 'dns_name': elb.dns_name, + 'canonical_hosted_zone_name': elb.canonical_hosted_zone_name, + 'canonical_hosted_zone_name_id': elb.canonical_hosted_zone_name_id, 'instances': [instance.id for instance in elb.instances], 'listeners': get_elb_listeners(elb.listeners), 'scheme': elb.scheme,