Created
February 25, 2015 01:20
-
-
Save tgerla/5c839de366cf4a3cad3e to your computer and use it in GitHub Desktop.
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
- debug: msg="should not appear" |
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
- debug: msg="should appear" |
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
--- | |
- | |
hosts: all | |
connection: local | |
gather_facts: false | |
tasks: | |
- include_vars: vars.yml | |
- debug: var=security | |
- debug: var=security.ssh_key_file | |
- include: 1.yml | |
when: security.ssh_key_file is defined | |
- include: 2.yml | |
when: security.pgp_id is defined |
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
security: | |
pgp_id: asdfg |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment