mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
13 lines
211 B
YAML
13 lines
211 B
YAML
|
- name: Test vars_prompt play vars
|
||
|
hosts: "{{ target_hosts }}"
|
||
|
become: no
|
||
|
gather_facts: no
|
||
|
|
||
|
vars_prompt:
|
||
|
- name: target_hosts
|
||
|
prompt: prompting for host
|
||
|
private: no
|
||
|
|
||
|
tasks:
|
||
|
- ping:
|