⛔️ DEPRECATED: This repo is no longer supported, please consider using https://github.com/vmware/ansible-collection-alb instead since this role is migrated to ansible collections.
Using this role, you will be able to use the latest version, and version specific Avi Ansible Modules.
- python >= 2.6
- avisdk
- requests-toolbelt
This role requires Ansible 2.0 or higher. Requirements are listed in the metadata file.
Please install avisdk from pip prior to running this module.
pip install avisdk --upgrade
To install the AviSDK Ansible Module, please issue the command on the machine you will run Ansible from.
ansible-galaxy install -f avinetworks.avisdk
For more information please visit http://docs.ansible.com/ansible/galaxy.html
The following example is generic, applies to any module.
---
- hosts: localhost
connection: local
roles:
- role: avinetworks.avisdk
tasks:
- avi_<module_name>:
controller: 10.10.27.90
username: admin
password: password
......
This example shows usage of the avi_healthmonitor module included in this role.
---
- hosts: localhost
connection: local
roles:
- role: avinetworks.avisdk
tasks:
- avi_healthmonitor:
controller: 10.10.27.90
username: admin
password: password
api_version: 17.1
https_monitor:
http_request: HEAD / HTTP/1.0
http_response_code:
- HTTP_2XX
- HTTP_3XX
receive_timeout: 4
failed_checks: 3
send_interval: 10
successful_checks: 3
type: HEALTH_MONITOR_HTTPS
name: MyWebsite-HTTPS
There are many more examples located at https://github.com/avinetworks/devops/tree/master/ansible and also available in the "EXAMPLES" within each module.
Apache 2.0
Avi Networks Avi Networks