ansible/test/integration/targets/set_fact/set_fact_auto_unsafe.yml
Matt Martz ffa548503d
Wrap all results, regardless of register, except for actions with clean facts (#73161)
* Wrap all results, regardless of register, except for actions with clean facts. Fixes #21088

* ci_complete

* Add tests

* Add clog frag
2021-06-04 16:40:53 +02:00

10 lines
200 B
YAML

- hosts: localhost
gather_facts: false
tasks:
- set_fact:
foo: bar
register: baz
- assert:
that:
- baz.ansible_facts.foo|type_debug != "AnsibleUnsafeText"