Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/ansible/ansible-examples.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarvin Greenberg <public.marvin@gmail.com>2017-08-11 22:39:41 +0300
committerMarvin Greenberg <public.marvin@gmail.com>2017-08-11 22:46:21 +0300
commit73b2f6e96d3740391014849d7e1a2d23b5541704 (patch)
treedb16c64512c88a57977fe18ecb9b59405d590323
parent386fdb253284e8fedc4943706f5f4374f7dc89d6 (diff)
Fix example to correctly reference "env" map variable
-rw-r--r--language_features/environment.yml6
1 files changed, 2 insertions, 4 deletions
diff --git a/language_features/environment.yml b/language_features/environment.yml
index 0215794..af68636 100644
--- a/language_features/environment.yml
+++ b/language_features/environment.yml
@@ -25,9 +25,7 @@
environment:
HI: test1
- # here we are using the $env variable above
+ # here we are using the "env" map variable above
- shell: echo $HI
- environment: env
-
-
+ environment: "{{ env }}"