cisco.ise.personas_update_roles module – Update the roles of a node
Note
This module is part of the cisco.ise collection (version 3.0.0).
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_update_roles.
New in cisco.ise 0.0.8
Synopsis
Update the roles of a 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 |
|---|---|
The domain of the node. |
|
Whether or not to verify the identity of the node. Choices: |
|
The version of the ISE node. |
|
Whether or not to wait on rate limit Choices: |
|
The local IP address of the node |
|
The name of the node. |
|
The password to log into the node. |
|
The public IP address of the primary node. |
|
The password for the primary node. |
|
The username for the primary node. |
|
The roles to be fulfilled by this node. Possible roles are SPAN or MNT-ACTIVE or MNT-STANDBY or PDP |
|
The username to log into the node. |
Notes
Note
Does not support
check_mode
See Also
See also
- cisco.ise.plugins.modules.personas_update_roles
The official documentation on the cisco.ise.plugins.modules.personas_update_roles module.
Examples
---
- name: Update roles on the rest of the nodes
cisco.ise.personas_update_roles:
primary_ip: 10.1.1.1
primary_username: admin
primary_password: cisco123
name: "{{ item.name }}"
local_ip: "{{ item.local_ip }}"
hostname: "{{ item.hostname }}"
username: admin
password: cisco123
domain: sstcloud.com
roles: "{{ item.roles }}"
loop:
- name: ISE PAN Server 2
local_ip: 10.1.1.2
hostname: ise-pan-server-2
roles:
- SPAN
- MNT-STANDBY
- name: ISE PSN Server 1
local_ip: 10.1.1.3
hostname: ise-psn-server-1
roles:
- PDP
- name: ISE PSN Server 2
local_ip: 10.1.1.4
hostname: ise-psn-server-2
roles:
- PDP
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
|---|---|
A string stating that the node was successfully updated Returned: always Sample: :ansible-rv-sample-value:`"Node ISE PAN Server 2 updated successfully"` |