summaryrefslogtreecommitdiff
path: root/test/integration/targets/vars_prompt/vars_prompt-1.yml
blob: 727c60e7fa8eca8678dc4345b1ea4930276b9eaf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
- 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