0 votes
in Ansible by
How do you access Shell Environment Variables?

1 Answer

0 votes
by
If you are just looking to access the existing variables then you can use “env” lookup plugin.

For example:

Accessing the value of Home environment variable on management machine:

local_home:”{{lookup(‘env’,’HOME’)}}”
...