f73ac53e58
This allows the use of variables in vars_prompt fields but allows variables entered in the prompt to affect play vars rather than throwing an undefined error.
Add tests for vars_prompt
(cherry picked from commit 6d38167d49
)
16 lines
266 B
YAML
16 lines
266 B
YAML
- name: Test vars_prompt custom prompt
|
|
hosts: testhost
|
|
become: no
|
|
gather_facts: no
|
|
|
|
vars_prompt:
|
|
- name: input
|
|
prompt: "Enter some input"
|
|
|
|
tasks:
|
|
- assert:
|
|
that:
|
|
- input == 'some more input'
|
|
|
|
- debug:
|
|
var: input
|