mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-06 13:22:48 +00:00
Improved support for parameter testing and checks for org_id (#41517)
This commit is contained in:
@@ -45,14 +45,42 @@
|
||||
delegate_to: localhost
|
||||
register: snmp_v2_disable
|
||||
|
||||
# - debug:
|
||||
# msg: '{{snmp_v2_disable}}'
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- snmp_v2_disable.data.v2CommunityString is not defined
|
||||
- snmp_v2_disable.data.v2cEnabled == False
|
||||
|
||||
- name: Enable SNMPv2c with org_id
|
||||
meraki_snmp:
|
||||
auth_key: '{{auth_key}}'
|
||||
org_id: '{{test_org_id}}'
|
||||
state: present
|
||||
v2c_enabled: true
|
||||
delegate_to: localhost
|
||||
register: snmp_v2_enable_id
|
||||
|
||||
- debug:
|
||||
msg: '{{snmp_v2_enable_id}}'
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- snmp_v2_enable_id.data.v2CommunityString is defined
|
||||
- snmp_v2_enable_id.data.v2cEnabled == true
|
||||
|
||||
- name: Disable SNMPv2c with org_id
|
||||
meraki_snmp:
|
||||
auth_key: '{{auth_key}}'
|
||||
org_id: '{{test_org_id}}'
|
||||
state: present
|
||||
v2c_enabled: False
|
||||
delegate_to: localhost
|
||||
register: snmp_v2_disable_id
|
||||
|
||||
- assert:
|
||||
that:
|
||||
- snmp_v2_disable_id.data.v2CommunityString is not defined
|
||||
- snmp_v2_disable_id.data.v2cEnabled == False
|
||||
|
||||
- name: Enable SNMPv3
|
||||
meraki_snmp:
|
||||
auth_key: '{{auth_key}}'
|
||||
|
||||
Reference in New Issue
Block a user