mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
17 lines
266 B
YAML
17 lines
266 B
YAML
|
- name: Test vars_prompt not private
|
||
|
hosts: testhost
|
||
|
become: no
|
||
|
gather_facts: no
|
||
|
|
||
|
vars_prompt:
|
||
|
- name: not_secret
|
||
|
private: no
|
||
|
|
||
|
tasks:
|
||
|
- assert:
|
||
|
that:
|
||
|
- not_secret == 'this is displayed'
|
||
|
|
||
|
- debug:
|
||
|
var: not_secret
|