mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-06-03 14:59:09 -07:00
Network modules to link to network guide (#37033)
* Network modules to link to network guide * Make it clear what's deprecated * enable -> become * Detail when provider is still needed (eAPI/NX-API) * Link to specific sections * rx_rate & tx_rate to link to conditional docs
This commit is contained in:
parent
5f3feac7fa
commit
ebc71bcb16
14 changed files with 97 additions and 8 deletions
|
@ -24,6 +24,11 @@ class ModuleDocFragment(object):
|
|||
options:
|
||||
authorize:
|
||||
description:
|
||||
- B(Deprecated)
|
||||
- "Starting with Ansible 2.5 we recommend using C(connection: network_cli) and C(become: yes)."
|
||||
- This option is only required if you are using eAPI.
|
||||
- For more information please see the L(EOS Platform Options guide, ../network/user_guide/platform_eos.html).
|
||||
- HORIZONTALLINE
|
||||
- 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
|
||||
|
@ -33,6 +38,11 @@ options:
|
|||
choices: ['yes', 'no']
|
||||
auth_pass:
|
||||
description:
|
||||
- B(Deprecated)
|
||||
- "Starting with Ansible 2.5 we recommend using C(connection: network_cli) and C(become: yes) with C(become_pass)."
|
||||
- This option is only required if you are using eAPI.
|
||||
- For more information please see the L(EOS Platform Options guide, ../network/user_guide/platform_eos.html).
|
||||
- HORIZONTALLINE
|
||||
- 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
|
||||
|
@ -40,6 +50,11 @@ options:
|
|||
default: none
|
||||
provider:
|
||||
description:
|
||||
- B(Deprecated)
|
||||
- "Starting with Ansible 2.5 we recommend using C(connection: network_cli)."
|
||||
- This option is only required if you are using eAPI.
|
||||
- For more information please see the L(EOS Platform Options guide, ../network/user_guide/platform_eos.html).
|
||||
- HORIZONTALLINE
|
||||
- A dict object containing connection details.
|
||||
default: null
|
||||
suboptions:
|
||||
|
@ -128,6 +143,8 @@ options:
|
|||
version_added: "2.5"
|
||||
|
||||
notes:
|
||||
- For more information on using Ansible to manage Arista EOS devices see U(https://www.ansible.com/ansible-arista-networks).
|
||||
- For information on using CLI, eAPI and privileged mode see the :ref:`EOS Platform Options guide <eos_platform_options>`
|
||||
- For more information on using Ansible to manage network devices see the :ref:`Ansible Network Guide <network_guide>`
|
||||
- For more information on using Ansible to manage Arista EOS devices see the `Arista integration page <https://www.ansible.com/ansible-arista-networks>`_.
|
||||
|
||||
"""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue