cisco.ise.personas_export_certs module – Export certificate into primary node

Note

This module is part of the cisco.ise collection (version 2.8.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 ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install cisco.ise. You need further requirements to be able to use this module, see Requirements for details.

To use it in a playbook, specify: cisco.ise.personas_export_certs.

New in cisco.ise 0.0.8

Synopsis

  • Export certificate into primary node

Note

This module has a corresponding action plugin.

Requirements

The below requirements are needed on the host that executes this module.

  • requests >= 2.25.1

  • python >= 3.5

Parameters

Parameter

Comments

hostname

string

The hostname for the node for which the certificate will be exported.

ip

string

The IP address of the node for which the certificate will be exported.

ise_verify

boolean

Whether or not to verify the identity of the node.

Choices:

  • false

  • true

ise_version

string

The version of the ISE node.

ise_wait_on_rate_limit

boolean

Whether or not to wait on rate limit

Choices:

  • false

  • true

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 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.

Notes

Note

  • Does not support check_mode

See Also

See also

cisco.ise.plugins.modules.personas_export_certs

The official documentation on the cisco.ise.plugins.modules.personas_export_certs module.

Examples

- 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

Return Values

Common return values are documented here, the following are the fields unique to this module:

Key

Description

ise_response

string

A text string stating that the certificate was exported successfully.

Returned: always

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

Authors

  • Rafael Campos (@racampos)