.. 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 .. Anchors .. _ansible_collections.cisco.ise.personas_export_certs_module: .. Anchors: short name for ansible.builtin .. Anchors: aliases .. Title cisco.ise.personas_export_certs -- Export certificate into primary node +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ .. Collection note .. note:: This plugin is part of the `cisco.ise collection `_ (version 2.0.0). You might already have this collection installed if you are using the ``ansible`` package. It is not included in ``ansible-core``. To check whether it is installed, run :code:`ansible-galaxy collection list`. To install it, use: :code:`ansible-galaxy collection install cisco.ise`. To use it in a playbook, specify: :code:`cisco.ise.personas_export_certs`. .. version_added .. versionadded:: 0.0.8 of cisco.ise .. contents:: :local: :depth: 1 .. Deprecated Synopsis -------- .. Description - Export certificate into primary node .. note:: This module has a corresponding :ref:`action plugin `. .. Aliases .. Requirements Requirements ------------ The below requirements are needed on the host that executes this module. - requests >= 2.25.1 - python >= 3.5 .. Options Parameters ---------- .. raw:: html
Parameter Choices/Defaults Comments
ip
string
The public IP address of the node for which the certificate will be exported.
ise_verify
boolean
    Choices:
  • no
  • yes
Whether or not to verify the identity of the node.
ise_version
string
The version of the ISE node.
ise_wait_on_rate_limit
boolean
    Choices:
  • no
  • yes
Whether or not to wait on rate limit
name
string
The name of the node for which the certificate will be exported.
password
string
The password for the node for which the certificate will be exported.
primary_ip
string
The public IP address of the primary node.
primary_password
string
The password for the primary node.
primary_username
string
The username for the primary node.
username
string
The username for the node for which the certificate will be exported.

.. Attributes .. Notes Notes ----- .. note:: - Does not support ``check_mode`` .. Seealso See Also -------- .. seealso:: :ref:`cisco.ise.plugins.modules.personas_export_certs ` The official documentation on the **cisco.ise.plugins.modules.personas_export_certs** module. .. Examples Examples -------- .. code-block:: yaml+jinja - name: Export trusted certificates into primary node cisco.ise.personas_export_certs: primary_ip: 10.1.1.1 primary_username: admin primary_password: cisco123 name: "{{ item.name }}" ip: "{{ item.ip }}" hostname: "{{ item.hostname }}" username: admin password: cisco123 loop: - name: ISE PAN Server 2 ip: 10.1.1.2 hostname: ise-pan-server-2 - name: ISE PSN Server 1 ip: 10.1.1.3 hostname: ise-psn-server-1 - name: ISE PSN Server 2 ip: 10.1.1.4 hostname: ise-psn-server-2 .. Facts .. Return values Return Values ------------- Common return values are documented :ref:`here `, the following are the fields unique to this module: .. raw:: html
Key Returned Description
ise_response
string
always
A text string stating that the certificate was exported successfully.

Sample:
The certificate for ISE PAN Server 2 was exported successfully to the primary node


.. Status (Presently only deprecated) .. Authors Authors ~~~~~~~ - Rafael Campos (@racampos) .. Parsing errors