Fix invalid variable in host inventory script (#5481)
This commit is contained in:
parent
e716bed11b
commit
94956ebde9
1 changed files with 1 additions and 1 deletions
|
@ -357,7 +357,7 @@ def iter_host_ips(hosts, ips):
|
|||
'ansible_ssh_host': ip,
|
||||
})
|
||||
|
||||
if 'use_access_ip' in host[1]['metadata'] and ihost[1]['metadata']['use_access_ip'] == "0":
|
||||
if 'use_access_ip' in host[1]['metadata'] and host[1]['metadata']['use_access_ip'] == "0":
|
||||
host[1].pop('access_ip')
|
||||
|
||||
yield host
|
||||
|
|
Loading…
Reference in a new issue