Skip to content

Instantly share code, notes, and snippets.

@xiaopeng163
Created February 4, 2020 14:59
Show Gist options
  • Save xiaopeng163/c4ecdc383c84ce8b6cba9f37627b9fae to your computer and use it in GitHub Desktop.
Save xiaopeng163/c4ecdc383c84ce8b6cba9f37627b9fae to your computer and use it in GitHub Desktop.
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