diff options
Diffstat (limited to 'ansible_collections/cisco/ise/README.md')
-rw-r--r-- | ansible_collections/cisco/ise/README.md | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/ansible_collections/cisco/ise/README.md b/ansible_collections/cisco/ise/README.md index f3278584f..a6471334e 100644 --- a/ansible_collections/cisco/ise/README.md +++ b/ansible_collections/cisco/ise/README.md @@ -39,7 +39,7 @@ This collection assumes that the API Gateway, the ERS APIs and OpenAPIs are enab ### Using the collection on previous Cisco ISE versions -As stated before, the collection has been tested and supports Cisco ISE 3.1_Patch_1. +As stated before, the collection has been tested and supports Cisco ISE 3.2_beta. It may work with Cisco ISE version 3.0, but it is not officially supported. @@ -50,7 +50,8 @@ The following table shows the supported versions. | Cisco ISE version | Ansible "cisco.ise" version | Python "ciscoisesdk" version | |-------------------|------------------------------|------------------------------| | 3.1.0 | 2.0.0 | 1.2.0 | -| 3.1_Patch_1 | 2.5.12 | 2.0.8 | +| 3.1_Patch_1 | 2.5.16 | 2.0.10 | +| 3.2_beta | 2.8.0 | 2.1.1 | If your Ansible collection is older please consider updating it first. *Notes*: @@ -87,10 +88,11 @@ export ISE_HOSTNAME=<A.B.C.D> export ISE_USERNAME=<username> export ISE_PASSWORD=<password> export ISE_VERIFY=False # optional, defaults to True -export ISE_VERSION=3.1_Patch_1 # optional, defaults to 3.1_Patch_1 +export ISE_VERSION=3.2_beta # optional, defaults to 3.2_beta export ISE_WAIT_ON_RATE_LIMIT=True # optional, defaults to True export ISE_USES_API_GATEWAY=True # optional, defaults to True export ISE_DEBUG=False # optional, defaults to False +export ISE_SINGLE_REQUEST_TIMEOUT:60 # optional, defaults to 60 ``` Create a `hosts` ([example](https://github.com/CiscoISE/ansible-ise/blob/main/playbooks/hosts)) file that uses `[ise_servers]` with your Cisco ISE Settings: @@ -123,11 +125,12 @@ ise_hostname: <A.B.C.D> ise_username: <username> ise_password: <password> ise_verify: False # optional, defaults to True -ise_version: 3.1_Patch_1 # optional, defaults to 3.1_Patch_1 +ise_version: 3.2_beta # optional, defaults to 3.2_beta ise_wait_on_rate_limit: True # optional, defaults to True ise_debug: False # optional, defaults to False ise_uses_api_gateway: True # optional, defaults to True ise_uses_csrf_token: False # optional, defaults to False +ise_single_request_timeout: 60 # optional, defaults to 60 ``` Create a `hosts` ([example](https://github.com/CiscoISE/ansible-ise/blob/main/playbooks/hosts)) file that uses `[ise_servers]` with your Cisco ISE Settings: @@ -172,11 +175,12 @@ ise_hostname: <A.B.C.D> ise_username: <username> ise_password: <password> ise_verify: False # optional, defaults to True -ise_version: 3.1_Patch_1 # optional, defaults to 3.1_Patch_1 +ise_version: 3.2_beta # optional, defaults to 3.2_beta ise_wait_on_rate_limit: True # optional, defaults to True ise_debug: False # optional, defaults to False ise_uses_api_gateway: True # optional, defaults to True ise_uses_csrf_token: False # optional, defaults to False +ise_single_request_timeout: 60 # optional, defaults to 60 ``` Create a `hosts` ([example](https://github.com/CiscoISE/ansible-ise/blob/main/playbooks/hosts)) file that uses `[ise_servers]` with your Cisco ISE Settings: |