From 879ea24a74fe659147d428a833c87fd97a1de602 Mon Sep 17 00:00:00 2001 From: Ganesh Nalawade Date: Thu, 28 Sep 2017 13:04:20 +0530 Subject: [PATCH] Fix documentation issue for nxos_snmp_user module (#31029) * Change auth to authentication in module document to be in sync with module params --- lib/ansible/modules/network/nxos/nxos_snmp_user.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/ansible/modules/network/nxos/nxos_snmp_user.py b/lib/ansible/modules/network/nxos/nxos_snmp_user.py index 71e4a846750..71b76bafbfd 100644 --- a/lib/ansible/modules/network/nxos/nxos_snmp_user.py +++ b/lib/ansible/modules/network/nxos/nxos_snmp_user.py @@ -43,15 +43,15 @@ options: description: - Group to which the user will belong to. required: true - auth: + authentication: description: - - Auth parameters for the user. + - Authentication parameters for the user. required: false default: null choices: ['md5', 'sha'] pwd: description: - - Auth password when using md5 or sha. + - Authentication password when using md5 or sha. required: false default: null privacy: @@ -77,7 +77,7 @@ EXAMPLES = ''' - nxos_snmp_user: user: ntc group: network-operator - auth: md5 + authentication: md5 pwd: test_password '''