You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ansible/test/integration/targets/ansible-pull/pull-integration-test/conn_secret.yml

13 lines
307 B
YAML

- hosts: localhost
gather_facts: false
tasks:
- ping: data='{{ansible_password}}'
register: dumb
vars:
ansible_python_interpreter: '{{ansible_playbook_python}}'
- name: If we got here, password was passed!
assert:
that:
- "dumb.ping == 'Testing123'"