nxos_user: auth.yaml test: stronger test password needed (#53533)
Basic passwords are rejected by the nxos device unless `no password strength-check` is configured. This change just makes the password meet the minimum strength checks.
This commit is contained in:
parent
c5de2233d0
commit
591e0ffb69
1 changed files with 2 additions and 2 deletions
|
@ -6,13 +6,13 @@
|
|||
role: network-operator
|
||||
provider: "{{ connection }}"
|
||||
state: present
|
||||
configured_password: pass123
|
||||
configured_password: pasS!123
|
||||
|
||||
- name: test login
|
||||
expect:
|
||||
command: "ssh auth_user@{{ ansible_ssh_host }} -p {{ ansible_ssh_port|default(22) }} -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -o PubkeyAuthentication=no show version"
|
||||
responses:
|
||||
(?i)password: "pass123"
|
||||
(?i)password: "pasS!123"
|
||||
|
||||
- name: test login with invalid password (should fail)
|
||||
expect:
|
||||
|
|
Loading…
Reference in a new issue