diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:22:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-06-26 06:22:20 +0000 |
commit | 18bd2207b6c1977e99a93673a7be099e23f0f547 (patch) | |
tree | 40fd9e5913462a88be6ba24be6953383c5b39874 /ansible_collections/cisco/dnac/README.md | |
parent | Releasing progress-linux version 10.0.1+dfsg-1~progress7.99u1. (diff) | |
download | ansible-18bd2207b6c1977e99a93673a7be099e23f0f547.tar.xz ansible-18bd2207b6c1977e99a93673a7be099e23f0f547.zip |
Merging upstream version 10.1.0+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'ansible_collections/cisco/dnac/README.md')
-rw-r--r-- | ansible_collections/cisco/dnac/README.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/ansible_collections/cisco/dnac/README.md b/ansible_collections/cisco/dnac/README.md index 4d2835f33..96e39ff82 100644 --- a/ansible_collections/cisco/dnac/README.md +++ b/ansible_collections/cisco/dnac/README.md @@ -4,7 +4,7 @@ The dnacenter-ansible project provides an Ansible collection for managing and automating your Cisco DNA Center environment. It consists of a set of modules and roles for performing tasks related to DNA Center. -This collection has been tested and supports Cisco DNA Center 2.3.5.3. +This collection has been tested and supports Cisco DNA Center 2.3.7.6. *Note: This collection is not compatible with versions of Ansible before v2.8.* @@ -15,11 +15,11 @@ The following table shows the supported versions. | Cisco DNA Center version | Ansible "cisco.dnac" version | Python "dnacentersdk" version | |--------------------------|------------------------------|-------------------------------| -| 2.1.1 | 3.0.0 | 2.2.5 | | 2.2.2.3 | 3.3.1 | 2.3.3 | | 2.2.3.3 | 6.4.0 | 2.4.11 | | 2.3.3.0 | 6.6.4 | 2.5.5 | -| 2.3.5.3 | ^6.13.0 | ^2.6.0 | +| 2.3.5.3 | 6.13.3 | 2.6.11 | +| 2.3.7.6 | ^6.15.0 | ^2.7.1 | If your Ansible collection is older please consider updating it first. @@ -45,7 +45,7 @@ ansible-galaxy collection install cisco.dnac:3.3.1 ## Requirements - Ansible >= 2.15 -- [Python DNA Center SDK](https://github.com/cisco-en-programmability/dnacentersdk) v2.6.0 or newer +- [Python DNA Center SDK](https://github.com/cisco-en-programmability/dnacentersdk) v2.7.0 or newer - Python >= 3.9, as the DNA Center SDK doesn't support Python version 2.x ## Install @@ -76,7 +76,7 @@ export DNAC_HOST=<A.B.C.D> export DNAC_PORT=443 # optional, defaults to 443 export DNAC_USERNAME=<username> export DNAC_PASSWORD=<password> -export DNAC_VERSION=2.3.5.3 # optional, defaults to 2.3.5.3. See the Compatibility matrix +export DNAC_VERSION=2.3.7.6 # optional, defaults to 2.3.7.6. See the Compatibility matrix export DNAC_VERIFY=False # optional, defaults to True export DNAC_DEBUG=False # optional, defaults to False ``` @@ -114,7 +114,7 @@ dnac_host: <A.B.C.D> dnac_port: 443 # optional, defaults to 443 dnac_username: <username> dnac_password: <password> -dnac_version: 2.3.5.3 # optional, defaults to 2.3.5.3. See the Compatibility matrix +dnac_version: 2.3.7.6 # optional, defaults to 2.3.7.6. See the Compatibility matrix dnac_verify: False # optional, defaults to True dnac_debug: False # optional, defaults to False ``` |