nxos module doc fragment for authorize,auth_pass (#39946)

Signed-off-by: Trishna Guha <trishnaguha17@gmail.com>
pull/39961/head
Trishna Guha 8 years ago committed by GitHub
parent 1ecfca84e6
commit fb26f6107d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,2 +1,3 @@
bugfixes:
- nxos terminal plugin on_become (https://github.com/ansible/ansible/pull/39355)
- nxos module_doc_fragments for authorize, auth_pass (https://github.com/ansible/ansible/pull/39946)

@ -62,6 +62,25 @@ options:
value of environment variable C(ANSIBLE_NET_PASSWORD) will be used instead.
required: false
default: null
authorize:
description:
- Instructs the module to enter privileged mode on the remote device
before sending any commands. If not specified, the device will
attempt to execute all commands in non-privileged mode. If the value
is not specified in the task, the value of environment variable
C(ANSIBLE_NET_AUTHORIZE) will be used instead.
type: bool
default: no
choices: ['yes', 'no']
version_added: 2.5.3
auth_pass:
description:
- Specifies the password to use if required to enter privileged mode
on the remote device. If I(authorize) is false, then this argument
does nothing. If the value is not specified in the task, the value of
environment variable C(ANSIBLE_NET_AUTH_PASS) will be used instead.
default: none
version_added: 2.5.3
timeout:
description:
- Specifies the timeout in seconds for communicating with the network device

Loading…
Cancel
Save