mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
16 lines
220 B
YAML
16 lines
220 B
YAML
|
- name: Basic vars_prompt test
|
||
|
hosts: testhost
|
||
|
become: no
|
||
|
gather_facts: no
|
||
|
|
||
|
vars_prompt:
|
||
|
- name: input
|
||
|
|
||
|
tasks:
|
||
|
- assert:
|
||
|
that:
|
||
|
- input == 'some input'
|
||
|
|
||
|
- debug:
|
||
|
var: input
|