.. Document meta :orphan: .. |antsibull-internal-nbsp| unicode:: 0xA0 :trim: .. role:: ansible-attribute-support-label .. role:: ansible-attribute-support-property .. role:: ansible-attribute-support-full .. role:: ansible-attribute-support-partial .. role:: ansible-attribute-support-none .. role:: ansible-attribute-support-na .. role:: ansible-option-type .. role:: ansible-option-elements .. role:: ansible-option-required .. role:: ansible-option-versionadded .. role:: ansible-option-aliases .. role:: ansible-option-choices .. role:: ansible-option-choices-default-mark .. role:: ansible-option-default-bold .. role:: ansible-option-configuration .. role:: ansible-option-returned-bold .. role:: ansible-option-sample-bold .. Anchors .. _ansible_collections.cisco.ise.personas_register_node_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title cisco.ise.personas_register_node module -- Register a node to the primary +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. Collection note .. note:: This module is part of the `cisco.ise collection `_ (version 2.10.0). To install it, use: :code:`ansible-galaxy collection install cisco.ise`. You need further requirements to be able to use this module, see :ref:`Requirements ` for details. To use it in a playbook, specify: :code:`cisco.ise.personas_register_node`. .. version_added .. rst-class:: ansible-version-added New in cisco.ise 2.4.0 .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Register a node to the primary .. note:: This module has a corresponding :ref:`action plugin `. .. Aliases .. Requirements .. _ansible_collections.cisco.ise.personas_register_node_module_requirements: Requirements ------------ The below requirements are needed on the host that executes this module. - requests \>= 2.25.1 - python \>= 3.5 .. Options Parameters ---------- .. rst-class:: ansible-option-table .. list-table:: :width: 100% :widths: auto :header-rows: 1 * - Parameter - Comments * - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-fqdn: .. rst-class:: ansible-option-title **fqdn** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
The fully qualified domain name of the node. .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-ise_verify: .. rst-class:: ansible-option-title **ise_verify** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`boolean` .. raw:: html
- .. raw:: html
Whether or not to verify the identity of the node. .. rst-class:: ansible-option-line :ansible-option-choices:`Choices:` - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-ise_version: .. rst-class:: ansible-option-title **ise_version** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
The version of the ISE node. .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-ise_wait_on_rate_limit: .. rst-class:: ansible-option-title **ise_wait_on_rate_limit** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`boolean` .. raw:: html
- .. raw:: html
Whether or not to wait on rate limit .. rst-class:: ansible-option-line :ansible-option-choices:`Choices:` - :ansible-option-choices-entry:`false` - :ansible-option-choices-entry:`true` .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-password: .. rst-class:: ansible-option-title **password** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
The password to log into the node. .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-primary_ip: .. rst-class:: ansible-option-title **primary_ip** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
The IP address of the primary node. .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-primary_password: .. rst-class:: ansible-option-title **primary_password** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
The password for the primary node. .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-primary_username: .. rst-class:: ansible-option-title **primary_username** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
The username for the primary node. .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-roles: .. rst-class:: ansible-option-title **roles** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`list` / :ansible-option-elements:`elements=string` .. raw:: html
- .. raw:: html
The roles to be fulfilled by this node. Possible roles are PrimaryAdmin, SecondaryAdmin, PrimaryMonitoring, SecondaryMonitoring, PrimaryDedicatedMonitoring, SecondaryDedicatedMonitoring, Standalone .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-services: .. rst-class:: ansible-option-title **services** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`list` / :ansible-option-elements:`elements=string` .. raw:: html
- .. raw:: html
The services this node will run. Possible services are Session, Profiler, TC-NAC, SXP, DeviceAdmin, PassiveIdentity, pxGrid, pxGridCloud .. raw:: html
* - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__parameter-username: .. rst-class:: ansible-option-title **username** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
The username to log into the node. .. raw:: html
.. Attributes .. Notes Notes ----- .. note:: - Does not support \ :literal:`check\_mode`\ .. Seealso See Also -------- .. seealso:: \ :ref:`cisco.ise.plugins.modules.personas\_register\_node `\ The official documentation on the **cisco.ise.plugins.modules.personas_register_node** module. .. Examples Examples -------- .. code-block:: yaml+jinja - name: Register the secondary node and PSN nodes to the cluster cisco.ise.personas_register_node: primary_ip: 10.1.1.1 primary_username: admin primary_password: Cisco123 fqdn: "{{ item.fqdn }}" username: admin password: cisco123 roles: "{{ item.roles }}" services: "{{ item.services }}" loop: - fqdn: ise-pan-server-2.example.com roles: - SecondaryAdmin - SecondaryMonitoring services: [] - fqdn: ise-psn-server-1.example.com roles: [] services: - Session - Profiler - fqdn: ise-psn-server-2.example.com roles: [] services: - Session - Profiler .. Facts .. Return values Return Values ------------- Common return values are documented :ref:`here `, the following are the fields unique to this module: .. rst-class:: ansible-option-table .. list-table:: :width: 100% :widths: auto :header-rows: 1 * - Key - Description * - .. raw:: html
.. _ansible_collections.cisco.ise.personas_register_node_module__return-ise_response: .. rst-class:: ansible-option-title **ise_response** .. raw:: html .. rst-class:: ansible-option-type-line :ansible-option-type:`string` .. raw:: html
- .. raw:: html
A string stating that the node was successfully registered .. rst-class:: ansible-option-line :ansible-option-returned-bold:`Returned:` always .. rst-class:: ansible-option-line .. rst-class:: ansible-option-sample :ansible-option-sample-bold:`Sample:` :ansible-rv-sample-value:`"Node ise-pan-server-2 updated successfully"` .. raw:: html
.. Status (Presently only deprecated) .. Authors Authors ~~~~~~~ - Rafael Campos (@racampos) .. Extra links Collection links ~~~~~~~~~~~~~~~~ .. raw:: html .. Parsing errors