win_snmp: Fixed example documentation (#58222) (#58261)

This commit is contained in:
Michael Cassaniti 2019-06-24 17:00:18 +10:00 committed by jhawkesworth
parent 75ca8eb42f
commit 372b896ed1

View file

@ -46,9 +46,9 @@ EXAMPLES = r'''
tasks:
- name: Replace SNMP communities and managers
win_snmp:
communities:
community_strings:
- public
managers:
permitted_managers:
- 192.168.1.2
action: set
@ -56,9 +56,9 @@ EXAMPLES = r'''
tasks:
- name: Replace SNMP communities and clear managers
win_snmp:
communities:
community_strings:
- public
managers: []
permitted_managers: []
action: set
'''