cisco.ise.personas_check_standalone – Ensure the node is in standalone mode

Note

This plugin is part of the cisco.ise collection (version 1.2.1).

To install it use: ansible-galaxy collection install cisco.ise.

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

New in version 0.0.8: of cisco.ise

Synopsis

  • Ensure the mode is in standalone mode

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 Choices/Defaults Comments
ip
string
The public IP address of the node
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.
password
string
The password for the node.
username
string
The username for the node.

Notes

Note

  • Does not support check_mode

See Also

See also

cisco.ise.plugins.modules.personas_check_standalone

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

Examples

- name: Check if all nodes are in STANDALONE state
  cisco.ise.personas_check_standalone:
    name: "{{ item.name }}"
    ip: "{{ item.ip }}"
    username: admin
    password: cisco123
  loop:
    - name: ISE PAN Server 1
      ip: 10.1.1.1
    - name: ISE PAN Server 2
      ip: 10.1.1.2
    - name: ISE PSN Server 1
      ip: 10.1.1.3
    - name: ISE PSN Server 2
      ip: 10.1.1.4

Return Values

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

Key Returned Description
ise_response
string
always
A string stating that the node is in standalone mode

Sample:
Node ISE PAN Server 1 is in STANDALONE mode


Authors

  • Rafael Campos (@racampos)