mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-22 21:00:22 -07:00
Fix documentation issue for nxos_snmp_user module (#31029)
* Change auth to authentication in module document to be in sync with module params
This commit is contained in:
parent
a41077df20
commit
879ea24a74
1 changed files with 4 additions and 4 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue