summaryrefslogtreecommitdiff
path: root/test/integration/targets/builtin_vars_prompt/vars_prompt-4.yml
blob: d33cc902154921348a5b1bbee70d1423aaab1950 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
- name: Test vars_prompt not private
  hosts: testhost
  become: no
  gather_facts: no

  vars_prompt:
    - name: not_secret
      private: no

  tasks:
    - assert:
        that:
          - not_secret == 'this is displayed'

    - debug:
        var: not_secret