ansible-practice/assert_filter.yaml
2023-11-08 17:37:18 +00:00

9 lines
206 B
YAML

---
- name: demonstrate filters
hosts: localhost
tasks:
- name: manipulate a list and check
assert:
that:
- "{{ [ 2, 3, 1, 2, 4, 2 ] | sort | unique | list }} is eq( [ 1, 2, 3, 4 ] )"