From b4072a01630b54c7690550e4b39a407c502c845e Mon Sep 17 00:00:00 2001 From: JulioPDX Date: Tue, 21 May 2024 12:16:31 -0700 Subject: [PATCH 1/7] Updating collection readme to new template --- ansible_collections/arista/cvp/README.md | 128 ++++------- .../cvp/docs/installation/requirements.md | 2 +- ansible_collections/arista/cvp/index.md | 204 ++++++++++++++++++ mkdocs.yml | 2 +- 4 files changed, 249 insertions(+), 87 deletions(-) create mode 100644 ansible_collections/arista/cvp/index.md diff --git a/ansible_collections/arista/cvp/README.md b/ansible_collections/arista/cvp/README.md index 745c1da93..ae9db7958 100644 --- a/ansible_collections/arista/cvp/README.md +++ b/ansible_collections/arista/cvp/README.md @@ -4,112 +4,66 @@ ~ that can be found in the LICENSE file. --> -# Ansible Modules for Arista CloudVision Platform +# arista.cvp - Automate CloudVision with Ansible -## About +## Description [Arista Networks](https://www.arista.com/) supports Ansible for managing devices running the EOS operating system through [CloudVision platform (CVP)](https://www.arista.com/en/products/eos/eos-cloudvision). This collection includes a set of Ansible modules that perform specific configuration tasks on a CVP server. These tasks include collecting facts, managing configlets, building topology with containers and devices, and running tasks. -

- Arista CloudVision and Ansible -

- -Even if **`arista.cvp`** collection is integrated with `arista.avd` collection to [automate configuration deployment](https://avd.sh/en/latest/roles/eos_config_deploy_cvp/index.html), this collection can also be used outside of AVD tasks to populate your CloudVision server with your workflows. +Even if the `arista.cvp` collection is integrated with the `arista.avd` collection to [automate configuration deployment](https://avd.arista.com/4.7/roles/eos_config_deploy_cvp/index.html), this collection can also be used outside of AVD tasks to populate your CloudVision server with your workflows. ## Requirements -### Arista CloudVision - -Current active branch: - -- **CVP 2021.3.x and onward**: starting with `ansible-cvp 3.9.0` - -!!! info - Starting with version 2.0.0, the collection uses [cvprac](https://github.com/aristanetworks/cvprac) as the CloudVision connection manager. So support for any new CloudVision server is tied to it's support in the cvprac Python library. - -| ansible-cvp | 1.0.0 | 1.1.0 | >= 2.0.0 |>= 3.9.0 | -| ----------- | ----- | ----- | -------- | -------- | -| 2018.2 | ✅ | ✅ | ✅ | | -| 2019.x | ✅ | ✅ | ✅ | | -| 2020.1 | | ✅ | ✅ | | -| >= 2020.2 | | | ✅ | | -| >= 2021.3 | | | | ✅ | - -### Python - -- Python `>=3.9` - -Please check the minimum version supported by your ansible installation on the [ansible website](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#control-node-requirements). +The CVP collection has the following requirements: -### Additional Python Libraries required +- Python 3.9+ +- Ansible Core 2.14.0 to 2.16.x +- Install the arista.cvp collection +- [Additional Python packages](#additional-python-dependencies) -**Ansible version:** +For a full breakdown of the requirements, please see the official `arista.cvp` [documentation](https://cvp.avd.sh/en/stable/docs/installation/requirements/). -- ansible-core>=2.14.0,<2.17.0 +## Installations -**3rd party Python libraries:** - -- [cvprac](https://github.com/aristanetworks/cvprac) -- requests -- jsonschema -- treelib (for modules in version 1) +Before using this collection, you need to install it with the Ansible Galaxy command-line tool: ```shell ---8<-- "requirements.txt" +ansible-galaxy collection install arista.cvp ``` -## Installation - -```shell -pip install ansible_collections/arista/cvp/requirements.txt +You can also include it in a requirements.yml file and install it with ansible-galaxy collection install -r requirements.yml, using the format: -# For modules in version 1 -pip install treelib>=1.5.5 +```yaml +collections: + - name: arista.cvp ``` -Ansible galaxy hosts all stable version of this collection. Installation from ansible-galaxy is the most convenient approach for consuming `arista.cvp` content +Note that if you install the collection from Ansible Galaxy, it will not be upgraded automatically when you upgrade the Ansible package. + +To upgrade the collection to the latest available version, run the following command: ```shell -$ ansible-galaxy collection install arista.cvp -Process install dependency map -Starting collection install process -Installing 'arista.cvp:1.1.0' to '~/.ansible/collections/ansible_collections/arista/cvp' +ansible-galaxy collection install arista.cvp --upgrade ``` -Complete installation process is available on [repository website](docs/installation/requirements/) - -## Collection overview - -This repository provides content for Ansible's collection **arista.cvp** with following content: +You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax to install version 4.7.1: -### List of available modules - -**Version 3:** - -- [**arista.cvp.cv_configlet_v3**](docs/modules/cv_configlet_v3.md) - Manage configlet configured on CVP. -- [**arista.cvp.cv_container_v3**](docs/modules/cv_container_v3.md) - Manage container topology and attach configlet and devices to containers. -- [**arista.cvp.cv_device_v3**](docs/modules/cv_device_v3.md) - Manage devices configured on CVP -- [**arista.cvp.cv_task_v3**](docs/modules/cv_task_v3.md) - Run tasks created on CVP. -- [**arista.cvp.cv_facts_v3**](docs/modules/cv_facts_v3.md) - Collect information from CloudVision. -- [**arista.cvp.cv_image_v3**](docs/modules/cv_image_v3.md) - Create EOS images and bundles on CloudVision. -- [**arista.cvp.cv_tag_v3**](docs/modules/cv_tag_v3.md) - Create, delete, assign and unassign tags on CloudVision. -- [**arista.cvp.cv_validate_v3**](docs/modules/cv_validate_v3.md) - Configlet validation -- [**arista.cvp.cv_change_control_v3**](docs/modules/cv_change_control_v3.md) - Manage change controls on CloudVision. +```shell +ansible-galaxy collection install arista.cvp:==3.10.1 +``` -### List of available roles +See [using Ansible collections](https://docs.ansible.com/ansible/devel/collections_guide/index.html) for more details. -- [**arista.cvp.dhcp_configuration**](roles/dhcp_configuration/) - Configure DHCPD service on a CloudVision server or any dhcpd service. -- [**arista.cvp.configlet_sync**](roles/configlets_sync/) - Synchronize configlets between multiple CloudVision servers. +### Additional Python Dependencies -### Deprecated modules +The CVP collection requires the installation of additional Python packages. To ensure you install the correct versions, run the following commands: -- [**arista.cvp.cv_facts**](docs/modules/cv_facts.md) - Collect CVP facts from server like list of containers, devices, configlet and tasks. -- [**arista.cvp.cv_configlet**](docs/modules/cv_configlet.md) - Manage configlet configured on CVP. -- [**arista.cvp.cv_container**](docs/modules/cv_container.md) - Manage container topology and attach configlet and devices to containers. -- [**arista.cvp.cv_device**](docs/modules/cv_device.md) - Manage devices configured on CVP -- [**arista.cvp.cv_task**](docs/modules/cv_task.md) - Run tasks created on CVP. +```shell +export ARISTA_CVP_DIR=$(ansible-galaxy collection list arista.cvp --format yaml | head -1 | cut -d: -f1) +pip3 install -r ${ARISTA_CVP_DIR}/arista/cvp/requirements.txt +``` -## Example +## Use Cases This example outlines how to use `arista.cvp` to create a container's topology on Arista CloudVision. @@ -187,13 +141,9 @@ ansible_httpapi_port=443 As modules of this collection are based on [`HTTPAPI` connection plugin](https://docs.ansible.com/ansible/latest/plugins/httpapi.html), authentication elements shall be declared using this plugin mechanism and are automatically shared with `arista.cvp.cv_*` modules. -## License - -The project is published under [Apache License](LICENSE). - -## Ask a question +## Testing -To report a bug, discuss or request a specific feature, please open a [GitHub issue](https://github.com/aristanetworks/ansible-cvp/issues) using the appropriate template. +Please see our [pipeline workflows](https://github.com/aristanetworks/ansible-cvp/actions) to view the in-depth testing performed against the collection. ## Contributing @@ -201,4 +151,12 @@ Contributing pull requests are gladly welcomed for this repository. If you are p You can also open an [issue](https://github.com/aristanetworks/ansible-cvp/issues) to report any problem or to submit enhancement. -A more complete [guide for contribution](https://avd.sh/en/latest/docs/contribution/overview.html) is available in the repository +A more complete [guide for contribution](hhttps://avd.arista.com/stable/docs/contribution/overview.html) is available. + +## Support + +Support for this `arista.cvp` collection is provided by the community directly in this repository. If you have any questions, please open an [issue](https://github.com/aristanetworks/ansible-cvp/issues). + +## License + +The project is published under [Apache 2.0 License](https://github.com/aristanetworks/ansible-cvp/blob/devel/ansible_collections/arista/cvp/LICENSE) diff --git a/ansible_collections/arista/cvp/docs/installation/requirements.md b/ansible_collections/arista/cvp/docs/installation/requirements.md index 44324ccb0..451684251 100644 --- a/ansible_collections/arista/cvp/docs/installation/requirements.md +++ b/ansible_collections/arista/cvp/docs/installation/requirements.md @@ -46,7 +46,7 @@ In a shell, run the following commands after installing the collection from ansi ```shell export ARISTA_CVP_DIR=$(ansible-galaxy collection list arista.cvp --format yaml | head -1 | cut -d: -f1) -pip3 install -r ${ARISTA_CVP_DIR}/arista/avd/requirements.txt +pip3 install -r ${ARISTA_CVP_DIR}/arista/cvp/requirements.txt ``` If the collection is cloned from GitHub, the requirements file can be referenced directly: diff --git a/ansible_collections/arista/cvp/index.md b/ansible_collections/arista/cvp/index.md new file mode 100644 index 000000000..20ac79cca --- /dev/null +++ b/ansible_collections/arista/cvp/index.md @@ -0,0 +1,204 @@ + + +# Ansible Modules for Arista CloudVision Platform + +## About + +[Arista Networks](https://www.arista.com/) supports Ansible for managing devices running the EOS operating system through [CloudVision platform (CVP)](https://www.arista.com/en/products/eos/eos-cloudvision). This collection includes a set of Ansible modules that perform specific configuration tasks on a CVP server. These tasks include collecting facts, managing configlets, building topology with containers and devices, and running tasks. + +

+ Arista CloudVision and Ansible +

+ +Even if the `arista.cvp` collection is integrated with the `arista.avd` collection to [automate configuration deployment](https://avd.arista.com/4.7/roles/eos_config_deploy_cvp/index.html), this collection can also be used outside of AVD tasks to populate your CloudVision server with your workflows. + +## Requirements + +### Arista CloudVision + +Current active branch: + +- **CVP 2021.3.x and onward**: starting with `ansible-cvp 3.9.0` + +!!! info + Starting with version 2.0.0, the collection uses [cvprac](https://github.com/aristanetworks/cvprac) as the CloudVision connection manager. So support for any new CloudVision server is tied to it's support in the cvprac Python library. + +| ansible-cvp | 1.0.0 | 1.1.0 | >= 2.0.0 |>= 3.9.0 | +| ----------- | ----- | ----- | -------- | -------- | +| 2018.2 | ✅ | ✅ | ✅ | | +| 2019.x | ✅ | ✅ | ✅ | | +| 2020.1 | | ✅ | ✅ | | +| >= 2020.2 | | | ✅ | | +| >= 2021.3 | | | | ✅ | + +### Python + +- Python `>=3.9` + +Please check the minimum version supported by your ansible installation on the [ansible website](https://docs.ansible.com/ansible/latest/installation_guide/intro_installation.html#control-node-requirements). + +### Additional Python Libraries required + +**Ansible version:** + +- ansible-core>=2.14.0,<2.17.0 + +**3rd party Python libraries:** + +- [cvprac](https://github.com/aristanetworks/cvprac) +- requests +- jsonschema +- treelib (for modules in version 1) + +```shell +--8<-- "requirements.txt" +``` + +## Installation + +```shell +pip install ansible_collections/arista/cvp/requirements.txt + +# For modules in version 1 +pip install treelib>=1.5.5 +``` + +Ansible galaxy hosts all stable version of this collection. Installation from ansible-galaxy is the most convenient approach for consuming `arista.cvp` content + +```shell +$ ansible-galaxy collection install arista.cvp +Process install dependency map +Starting collection install process +Installing 'arista.cvp:1.1.0' to '~/.ansible/collections/ansible_collections/arista/cvp' +``` + +Complete installation process is available on [repository website](docs/installation/requirements/) + +## Collection overview + +This repository provides content for Ansible's collection **arista.cvp** with following content: + +### List of available modules + +**Version 3:** + +- [**arista.cvp.cv_configlet_v3**](docs/modules/cv_configlet_v3.md) - Manage configlet configured on CVP. +- [**arista.cvp.cv_container_v3**](docs/modules/cv_container_v3.md) - Manage container topology and attach configlet and devices to containers. +- [**arista.cvp.cv_device_v3**](docs/modules/cv_device_v3.md) - Manage devices configured on CVP +- [**arista.cvp.cv_task_v3**](docs/modules/cv_task_v3.md) - Run tasks created on CVP. +- [**arista.cvp.cv_facts_v3**](docs/modules/cv_facts_v3.md) - Collect information from CloudVision. +- [**arista.cvp.cv_image_v3**](docs/modules/cv_image_v3.md) - Create EOS images and bundles on CloudVision. +- [**arista.cvp.cv_tag_v3**](docs/modules/cv_tag_v3.md) - Create, delete, assign and unassign tags on CloudVision. +- [**arista.cvp.cv_validate_v3**](docs/modules/cv_validate_v3.md) - Configlet validation +- [**arista.cvp.cv_change_control_v3**](docs/modules/cv_change_control_v3.md) - Manage change controls on CloudVision. + +### List of available roles + +- [**arista.cvp.dhcp_configuration**](roles/dhcp_configuration/) - Configure DHCPD service on a CloudVision server or any dhcpd service. +- [**arista.cvp.configlet_sync**](roles/configlets_sync/) - Synchronize configlets between multiple CloudVision servers. + +### Deprecated modules + +- [**arista.cvp.cv_facts**](docs/modules/cv_facts.md) - Collect CVP facts from server like list of containers, devices, configlet and tasks. +- [**arista.cvp.cv_configlet**](docs/modules/cv_configlet.md) - Manage configlet configured on CVP. +- [**arista.cvp.cv_container**](docs/modules/cv_container.md) - Manage container topology and attach configlet and devices to containers. +- [**arista.cvp.cv_device**](docs/modules/cv_device.md) - Manage devices configured on CVP +- [**arista.cvp.cv_task**](docs/modules/cv_task.md) - Run tasks created on CVP. + +## Example + +This example outlines how to use `arista.cvp` to create a container's topology on Arista CloudVision. + +A dedicated repository is available for step-by-step examples on [ansible-cvp-toi](https://github.com/arista-netdevops-community/ansible-cvp-toi). + +A [complete end-to-end demo](https://github.com/arista-netdevops-community/ansible-avd-cloudvision-demo) using [Arista Validated Design collection](https://github.com/aristanetworks/ansible-avd) and CloudVision modules is available as an example. + +Below is a very basic example of build a container topology on a CloudVision platform, assuming you have three vEOS named `veos0{1,3}` and a configlet named `alias`. + +```yaml +--- +- name: Playbook to demonstrate cvp modules. + hosts: cv_server + connection: local + gather_facts: no + collections: + - arista.cvp + vars: + # Configlet definition + device_configuration: + mlag-01a-config: "{{lookup('file', './config-router-mlag01a.conf')}}" + mlag-01b-config: "{{lookup('file', './config-router-mlag01b.conf')}}" + + # Container definition + containers_provision: + Fabric: + parentContainerName: Tenant + Spines: + parentContainerName: Fabric + Leaves: + parentContainerName: Fabric + configlets: + - alias + MLAG01: + parentContainerName: Leaves + + # Device definition + devices_provision: + - fqdn: mlag-01a + parentContainerName: 'MLAG01' + configlets: + - 'mlag-01a-config' + systemMacAddress: '50:8d:00:e3:78:aa' + - fqdn: mlag-01b + parentContainerName: 'MLAG01' + configlets: + - 'mlag-01b-config' + systemMacAddress: '50:8d:00:e3:78:bb' + + tasks: + - name: "Build Container topology on {{inventory_hostname}}" + arista.cvp.cv_container_v3: + topology: '{{containers_provision}}' + + - name: "Configure devices on {{inventory_hostname}}" + arista.cvp.cv_device_v3: + devices: '{{devices_provision}}' +``` + +As modules of this collection are based on [`HTTPAPI` connection plugin](https://docs.ansible.com/ansible/latest/plugins/httpapi.html), authentication elements shall be declared using this plugin mechanism and are automatically shared with `arista.cvp.cv_*` modules. + +```ini +[development] +cv_server ansible_host= 10.90.224.122 ansible_httpapi_host=10.90.224.122 + +[development:vars] +ansible_connection=httpapi +ansible_httpapi_use_ssl=True +ansible_httpapi_validate_certs=False +ansible_user=cvpadmin +ansible_password=ansible +ansible_network_os=eos +ansible_httpapi_port=443 +``` + +As modules of this collection are based on [`HTTPAPI` connection plugin](https://docs.ansible.com/ansible/latest/plugins/httpapi.html), authentication elements shall be declared using this plugin mechanism and are automatically shared with `arista.cvp.cv_*` modules. + +## License + +The project is published under [Apache License](LICENSE). + +## Ask a question + +To report a bug, discuss or request a specific feature, please open a [GitHub issue](https://github.com/aristanetworks/ansible-cvp/issues) using the appropriate template. + +## Contributing + +Contributing pull requests are gladly welcomed for this repository. If you are planning a significant change, please start a discussion first to ensure we can merge it. + +You can also open an [issue](https://github.com/aristanetworks/ansible-cvp/issues) to report any problem or to submit enhancement. + +A more complete [guide for contribution](https://avd.sh/en/latest/docs/contribution/overview.html) is available in the repository diff --git a/mkdocs.yml b/mkdocs.yml index 37967f20b..0b11fccee 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -114,7 +114,7 @@ markdown_extensions: # TOC docs_dir: ansible_collections/arista/cvp/ nav: - - Home: README.md + - Home: index.md - Getting Started: docs/getting-started.md - Installation: - Collection Installation: docs/installation/collection-installation.md From 1a96a5f1bf1223b9da061c36c8c721e6bdf86eac Mon Sep 17 00:00:00 2001 From: JulioPDX Date: Tue, 21 May 2024 12:17:04 -0700 Subject: [PATCH 2/7] update copyright info --- ansible_collections/arista/cvp/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_collections/arista/cvp/index.md b/ansible_collections/arista/cvp/index.md index 20ac79cca..b85b3eeb0 100644 --- a/ansible_collections/arista/cvp/index.md +++ b/ansible_collections/arista/cvp/index.md @@ -1,5 +1,5 @@ From d3290a0bce879457b4752b1dc30c2f1789047962 Mon Sep 17 00:00:00 2001 From: Carl Buchmann Date: Thu, 18 Jul 2024 14:48:17 -0400 Subject: [PATCH 3/7] update ansible-core version support --- ansible_collections/arista/cvp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_collections/arista/cvp/README.md b/ansible_collections/arista/cvp/README.md index ae9db7958..d6a79872b 100644 --- a/ansible_collections/arista/cvp/README.md +++ b/ansible_collections/arista/cvp/README.md @@ -17,7 +17,7 @@ Even if the `arista.cvp` collection is integrated with the `arista.avd` collecti The CVP collection has the following requirements: - Python 3.9+ -- Ansible Core 2.14.0 to 2.16.x +- Ansible Core 2.15.0 to 2.17.x - Install the arista.cvp collection - [Additional Python packages](#additional-python-dependencies) From 79e73c150c41e9ab43911918038bf13c43ff1bb9 Mon Sep 17 00:00:00 2001 From: Carl Buchmann Date: Thu, 18 Jul 2024 14:54:34 -0400 Subject: [PATCH 4/7] typo in version --- ansible_collections/arista/cvp/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible_collections/arista/cvp/README.md b/ansible_collections/arista/cvp/README.md index d6a79872b..81c827ac8 100644 --- a/ansible_collections/arista/cvp/README.md +++ b/ansible_collections/arista/cvp/README.md @@ -46,7 +46,7 @@ To upgrade the collection to the latest available version, run the following com ansible-galaxy collection install arista.cvp --upgrade ``` -You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax to install version 4.7.1: +You can also install a specific version of the collection, for example, if you need to downgrade when something is broken in the latest version (please report an issue in this repository). Use the following syntax to install version 3.10.1: ```shell ansible-galaxy collection install arista.cvp:==3.10.1 From 99efab20f07f4a90bcc997710a6be119f79d524a Mon Sep 17 00:00:00 2001 From: Carl Buchmann Date: Thu, 18 Jul 2024 15:12:01 -0400 Subject: [PATCH 5/7] update support --- ansible_collections/arista/cvp/README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ansible_collections/arista/cvp/README.md b/ansible_collections/arista/cvp/README.md index 81c827ac8..72115631f 100644 --- a/ansible_collections/arista/cvp/README.md +++ b/ansible_collections/arista/cvp/README.md @@ -155,7 +155,8 @@ A more complete [guide for contribution](hhttps://avd.arista.com/stable/docs/con ## Support -Support for this `arista.cvp` collection is provided by the community directly in this repository. If you have any questions, please open an [issue](https://github.com/aristanetworks/ansible-cvp/issues). +- The `arista.avd` Ansible collection version 4.x releases and higher offer full support from Arista TAC, which includes the `arista.cvp` Ansible collection. If your organization has the [A-Care subscription](https://www.arista.com/assets/data/pdf/AVD-A-Care-TAC-Support-Overview.pdf) please don't hesitate to contact TAC with any questions or issues. +- Community support is provided via [Github discussions board](https://github.com/aristanetworks/ansible-cvp/discussions). ## License From fec3f2156f8eae9d9c7fbd7ba36fd76039ad4027 Mon Sep 17 00:00:00 2001 From: Carl Buchmann Date: Thu, 18 Jul 2024 15:33:39 -0400 Subject: [PATCH 6/7] remove link to AVD contribution guide --- ansible_collections/arista/cvp/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible_collections/arista/cvp/README.md b/ansible_collections/arista/cvp/README.md index 72115631f..46720d476 100644 --- a/ansible_collections/arista/cvp/README.md +++ b/ansible_collections/arista/cvp/README.md @@ -151,7 +151,6 @@ Contributing pull requests are gladly welcomed for this repository. If you are p You can also open an [issue](https://github.com/aristanetworks/ansible-cvp/issues) to report any problem or to submit enhancement. -A more complete [guide for contribution](hhttps://avd.arista.com/stable/docs/contribution/overview.html) is available. ## Support From be1dacdc230032eb079909b6c16ab00d1af54418 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 18 Jul 2024 19:33:57 +0000 Subject: [PATCH 7/7] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- ansible_collections/arista/cvp/README.md | 1 - 1 file changed, 1 deletion(-) diff --git a/ansible_collections/arista/cvp/README.md b/ansible_collections/arista/cvp/README.md index 46720d476..72e0aef8c 100644 --- a/ansible_collections/arista/cvp/README.md +++ b/ansible_collections/arista/cvp/README.md @@ -151,7 +151,6 @@ Contributing pull requests are gladly welcomed for this repository. If you are p You can also open an [issue](https://github.com/aristanetworks/ansible-cvp/issues) to report any problem or to submit enhancement. - ## Support - The `arista.avd` Ansible collection version 4.x releases and higher offer full support from Arista TAC, which includes the `arista.cvp` Ansible collection. If your organization has the [A-Care subscription](https://www.arista.com/assets/data/pdf/AVD-A-Care-TAC-Support-Overview.pdf) please don't hesitate to contact TAC with any questions or issues.