mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
18 lines
253 B
YAML
18 lines
253 B
YAML
|
- name: Test vars_prompt confirm
|
||
|
hosts: testhost
|
||
|
become: no
|
||
|
gather_facts: no
|
||
|
|
||
|
vars_prompt:
|
||
|
- name: input
|
||
|
confirm: yes
|
||
|
|
||
|
tasks:
|
||
|
- name:
|
||
|
assert:
|
||
|
that:
|
||
|
- input == 'confirm me'
|
||
|
|
||
|
- debug:
|
||
|
var: input
|