Add secondary addresses to facts
This commit is contained in:
parent
b014769c30
commit
2916a8bf5d
1 changed files with 6 additions and 0 deletions
|
@ -63,6 +63,11 @@ def get_error_message(xml_string):
|
||||||
|
|
||||||
def get_eni_info(interface):
|
def get_eni_info(interface):
|
||||||
|
|
||||||
|
# Private addresses
|
||||||
|
private_addresses = []
|
||||||
|
for ip in interface.private_ip_addresses:
|
||||||
|
private_addresses.append({ 'private_ip_address': ip.private_ip_address, 'primary_address': ip.primary })
|
||||||
|
|
||||||
interface_info = {'id': interface.id,
|
interface_info = {'id': interface.id,
|
||||||
'subnet_id': interface.subnet_id,
|
'subnet_id': interface.subnet_id,
|
||||||
'vpc_id': interface.vpc_id,
|
'vpc_id': interface.vpc_id,
|
||||||
|
@ -73,6 +78,7 @@ def get_eni_info(interface):
|
||||||
'private_ip_address': interface.private_ip_address,
|
'private_ip_address': interface.private_ip_address,
|
||||||
'source_dest_check': interface.source_dest_check,
|
'source_dest_check': interface.source_dest_check,
|
||||||
'groups': dict((group.id, group.name) for group in interface.groups),
|
'groups': dict((group.id, group.name) for group in interface.groups),
|
||||||
|
'private_ip_addresses': private_addresses
|
||||||
}
|
}
|
||||||
|
|
||||||
if interface.attachment is not None:
|
if interface.attachment is not None:
|
||||||
|
|
Loading…
Reference in a new issue