-
-
Save xiaopeng163/c4ecdc383c84ce8b6cba9f37627b9fae 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
hosts: localhost | |
vars: | |
data: | |
key1: 1 | |
key2: 2 | |
tasks: | |
- name: Hello World debug | |
debug: | |
msg: "###ING###{{data}}###ING###" | |
PLAY [Hello World] ************************************************************************************************** | |
TASK [Gathering Facts] ********************************************************************************************** | |
ok: [localhost] | |
TASK [Hello World debug] ******************************************************************************************** | |
ok: [localhost] => { | |
"msg": "###ING###{'key1': 1, 'key2': 2}###ING###" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment