summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/callback_default/test_yaml.yml
blob: 64059064b01ff8ef2b08675c6257adba22ae02ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
- hosts: testhost
  gather_facts: false
  tasks:
    - name: Sample task name
      debug:
        msg: sample debug msg

    - name: Umlaut output
      debug:
        msg: "äöü\néêè\nßï☺"

    - name: Test to_yaml
      debug:
        msg: "{{ data | to_yaml }}"
      vars:
        data: |
          line 1
          line 2
          line 3