mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
1da7194534
We don't use authorize on iosxr nor we use a special transport, so no need to use iosxr for CLI at all.
33 lines
842 B
YAML
33 lines
842 B
YAML
---
|
|
- block:
|
|
- name: Create user with password
|
|
iosxr_user:
|
|
name: auth_user
|
|
state: present
|
|
configured_password: pass123
|
|
|
|
- name: test login
|
|
expect:
|
|
command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version"
|
|
responses:
|
|
(?i)password: "pass123"
|
|
|
|
- name: test login with invalid password (should fail)
|
|
expect:
|
|
command: "ssh auth_user@{{ ansible_ssh_host }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no show version"
|
|
responses:
|
|
(?i)password: "badpass"
|
|
ignore_errors: yes
|
|
register: results
|
|
|
|
- name: check that attempt failed
|
|
assert:
|
|
that:
|
|
- results.failed
|
|
|
|
always:
|
|
- name: delete user
|
|
iosxr_user:
|
|
name: auth_user
|
|
state: absent
|
|
register: result
|