You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/callback_default/test_yaml.yml

20 lines
354 B
YAML

- 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