1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Merge pull request #12865 from aidanhs/aphs-document-env-vars-play

Document setting environment variables in a playbook
This commit is contained in:
Brian Coca 2015-10-22 07:18:14 -04:00
commit cc41354733

View file

@ -33,6 +33,17 @@ The environment can also be stored in a variable, and accessed like so::
- apt: name=cobbler state=installed
environment: proxy_env
You can also use it at a playbook level::
- hosts: testhost
roles:
- php
- nginx
environment:
http_proxy: http://proxy.example.com:8080
While just proxy settings were shown above, any number of settings can be supplied. The most logical place
to define an environment hash might be a group_vars file, like so::