0 votes
in DevOps by
How to access variable names in Ansible?

1 Answer

0 votes
by

Using hostvars method we can access and add the variables like below

{{ hostvars[inventory_hostname][‘ansible_’ + which_interface][‘ipv4’][‘address’] }}

...