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