in Ansible by (23.9k points)
What is the way to access shell environment variables in Ansible?

1 Answer

0 votes
by (32.2k points)
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 }}

Related questions

0 votes
0 votes
0 votes
asked Oct 7, 2020 in Ansible by Robindeniel (20.8k points)
0 votes
0 votes
asked Sep 19, 2019 in Ansible by Robin (14.5k points)
...