mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
c822292347
* add static route and hsrp it cases * add snmp_user and snapshot it * password strength correction * fix typo * add compare snapshot as it is fixed in the code now * skip snapshot tests for titanium * titanium and nxapi conditions added
41 lines
866 B
YAML
41 lines
866 B
YAML
---
|
|
- debug: msg="START TRANSPORT:{{ connection.transport }} nxos_snmp_user sanity test"
|
|
|
|
- name: Create snmp user
|
|
nxos_snmp_user: &create
|
|
user: ntc
|
|
group: network-operator
|
|
authentication: md5
|
|
pwd: N$tOpe%1
|
|
privacy: HelloU$er1
|
|
encrypt: true
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: &true
|
|
that:
|
|
- "result.changed == true"
|
|
|
|
- name: delete snmp user
|
|
nxos_snmp_user: &remove
|
|
user: ntc
|
|
group: network-operator
|
|
authentication: md5
|
|
pwd: Testing1%
|
|
privacy: HelloU$er1
|
|
encrypt: true
|
|
state: absent
|
|
provider: "{{ connection }}"
|
|
register: result
|
|
|
|
- assert: *true
|
|
|
|
- name: "Remove Idempotence"
|
|
nxos_snmp_user: *remove
|
|
register: result
|
|
|
|
- assert: &false
|
|
that:
|
|
- "result.changed == false"
|
|
|
|
- debug: msg="END TRANSPORT:{{ connection.transport }} nxos_snmp_user sanity test"
|