Removed in Ansible: | |
---|---|
version: 2.8 | |
Why: | Replaced with Citrix maintained version. |
Alternative: | Use netscaler_service and netscaler_server instead. |
Parameter | Choices/Defaults | Comments |
---|---|---|
action |
|
The action you want to perform on the entity.
|
name
required |
Default: "hostname"
|
Name of the entity.
|
nsc_host
required |
Hostname or ip of your netscaler.
|
|
nsc_protocol |
Default: "https"
|
Protocol used to access netscaler.
|
password
required |
Password.
|
|
type |
|
Type of the entity.
|
user
required |
Username.
|
|
validate_certs
bool |
|
If
no , SSL certificates for the target url will not be validated.This should only be used on personally controlled sites using self-signed certificates.
|
- name: Disable the server
netscaler:
nsc_host: nsc.example.com
user: apiuser
password: apipass
- name: Enable the server
netscaler:
nsc_host: nsc.example.com
user: apiuser
password: apipass
action: enable
- name: Disable the service local:8080
netscaler:
nsc_host: nsc.example.com
user: apiuser
password: apipass
name: local:8080
type: service
action: disable
This module is flagged as deprecated and will be removed in version 2.8. For more information see DEPRECATED.
Hint
If you notice any issues in this documentation you can edit this document to improve it.