mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-05-31 05:19:09 -07:00
Adds missing keys to _collect_facts function
This commit is contained in:
parent
783a09d105
commit
b10859c192
1 changed files with 3 additions and 0 deletions
|
@ -244,11 +244,14 @@ def _collect_facts(resource):
|
||||||
'db_name' : resource['DBName'],
|
'db_name' : resource['DBName'],
|
||||||
'availability_zone' : resource['AvailabilityZone'],
|
'availability_zone' : resource['AvailabilityZone'],
|
||||||
'maintenance_window': resource['PreferredMaintenanceWindow'],
|
'maintenance_window': resource['PreferredMaintenanceWindow'],
|
||||||
|
'url' : resource['Endpoint']['Address'],
|
||||||
|
'port' : resource['Endpoint']['Port']
|
||||||
}
|
}
|
||||||
|
|
||||||
for node in resource['ClusterNodes']:
|
for node in resource['ClusterNodes']:
|
||||||
if node['NodeRole'] in ('SHARED', 'LEADER'):
|
if node['NodeRole'] in ('SHARED', 'LEADER'):
|
||||||
facts['private_ip_address'] = node['PrivateIPAddress']
|
facts['private_ip_address'] = node['PrivateIPAddress']
|
||||||
|
facts['public_ip_address'] = node['PublicIPAddress']
|
||||||
break
|
break
|
||||||
|
|
||||||
return facts
|
return facts
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue