Fix documentation issue for nxos_snmp_user module (#31029)

*  Change auth to authentication in module document
   to be in sync with module params
pull/31031/head
Ganesh Nalawade 7 years ago committed by GitHub
parent a41077df20
commit 879ea24a74

@ -43,15 +43,15 @@ options:
description: description:
- Group to which the user will belong to. - Group to which the user will belong to.
required: true required: true
auth: authentication:
description: description:
- Auth parameters for the user. - Authentication parameters for the user.
required: false required: false
default: null default: null
choices: ['md5', 'sha'] choices: ['md5', 'sha']
pwd: pwd:
description: description:
- Auth password when using md5 or sha. - Authentication password when using md5 or sha.
required: false required: false
default: null default: null
privacy: privacy:
@ -77,7 +77,7 @@ EXAMPLES = '''
- nxos_snmp_user: - nxos_snmp_user:
user: ntc user: ntc
group: network-operator group: network-operator
auth: md5 authentication: md5
pwd: test_password pwd: test_password
''' '''

Loading…
Cancel
Save