0 votes
in Ansible by
What is the way to access shell environment variables in Ansible?

1 Answer

0 votes
by
In Ansible, if you want to access existing variables, then you need to use the 'env' lookup plugin.

For example, you want to access the value of the Office environment on the management machine, as shown in the following command, such as:

---  

# ...  

vars:  

local_home: "{{ lookup('env','Office') }}"  

I  

{{ ansible_env.SOME_VARIABLE }}
...