19 lines
303 B
YAML
19 lines
303 B
YAML
---
|
|
- hosts: all
|
|
vars:
|
|
test_check: {}
|
|
tasks:
|
|
- name: test
|
|
set_fact:
|
|
test_check: "{{ test_check | default({}, true) }}"
|
|
|
|
- name: mapping
|
|
assert:
|
|
that:
|
|
- test_check is mapping
|
|
|
|
- name: test
|
|
debug:
|
|
msg:
|
|
- "{{ test_check }}"
|