Created
May 17, 2017 12:51
-
-
Save dmsimard/033e9e2d1201d65908fac5c4fdd2e25d to your computer and use it in GitHub Desktop.
reproducer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
- name: Reproducer | |
hosts: localhost | |
gather_facts: no | |
tasks: | |
- set_fact: | |
foo: bar | |
- debug: | |
msg: "{{ foo }}" | |
# ansible-playbook playbook.yml yields "bar" | |
# ansible-playbook playbook.yml -e foo=foo yields "foo" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment