The Red Hat Ecosystem Catalog is the official source for discovering and learning more about the Red Hat Ecosystem of both Red Hat and certified third-party products and services.
We’re the world’s leading provider of enterprise open source solutions—including Linux, cloud, container, and Kubernetes. We deliver hardened solutions that make it easier for enterprises to work across platforms and environments, from the core datacenter to the network edge.
41Modules3Plugins
Citrix ADC modules for Ansible
This collection contains the Citrix ADC modules for ansible.
It also contains the ssh connection plugin for Citrix ADC.
Sample playbooks can be found in the GitHub repository.
To install in ansible default or defined paths use:
ansible-galaxy collection install citrix.adc
To use a module from a collection, reference the full collection namespace.
---
- name: Configure ADC
hosts: citrix_adc
tasks:
- name: Set server
delegate_to: localhost
citrix.adc.citrix_adc_server
nsip: "{{ nsip }}"
nitro_user: "{{ nitro_user }}"
nitro_pass: "{{ nitro_pass }}"
state: present
name: server_1
ipaddress: 10.80.0.1
Or use the collections playbook parameter to search for unqualified module names
---
- name: Configure ADC
hosts: citrix_adc
collections:
- citrix.adc
tasks:
- name: Set server
delegate_to: localhost
citrix_adc_server:
nsip: "{{ nsip }}"
nitro_user: "{{ nitro_user }}"
nitro_pass: "{{ nitro_pass }}"
state: present
name: server_1
ipaddress: 10.80.0.1
| Product |
|---|
| 2.5 |
| 2.6 |
| 2.7 |
This collection is self-contained and has no external Ansible dependencies.
This collection is not being used by other collections.