Using Ansible to automate Cisco ACI in Windows
Some instructions on how to get started with using the ansible to automate Cisco ACI specifically by using ansible playbooks to accomplish basic tasks. Using the Cisco ACI GUI can be time-consuming and error prone, a more efficient could be to automate the process using ansible playbooks. Ansible is essentially an automation tool that uses playbooks consisting of Yaml files to automate the process of network configuration via connection to the APIC REST interface and push the config API commands. Really useful link for how to get your Windows environment set up for using ansible, including Cygwin and Linux virtual machines: https://phoenixnap.com/kb/install-ansible-on-windows#htoc-method-1-using-cygwin I have found the Cygwin approach to work perfectly fine for running ansible. In fact, I recommend Cygwin as the way to go in running ansible in your Windows environment, given that all my attempts to install via 'pip install' commands failed. The number of Stack...