mirror of
https://github.com/ansible/ansible.git
synced 2026-08-02 16:12:06 +02:00
10 lines
244 B
YAML
10 lines
244 B
YAML
- hosts: localhost
|
|
gather_facts: no
|
|
tasks:
|
|
- name: Read YAML from a string
|
|
assert:
|
|
that:
|
|
- "'1' | from_yaml == 1"
|
|
- "'[1]' | from_yaml == [1]"
|
|
- "'key: value' | from_yaml == {'key': 'value'}"
|