netscaler – Manages Citrix NetScaler entities¶
DEPRECATED¶
Removed in Ansible: | |
---|---|
version: 2.8 | |
Why: | Replaced with Citrix maintained version. |
Alternative: | Use netscaler_service and netscaler_server instead. |
Parameters¶
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
boolean
|
|
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.
|
Examples¶
- 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
Status¶
- This module will be removed in version 2.8. [deprecated]
- For more information see DEPRECATED.
Authors¶
- Nandor Sivok (@dominis)
Hint
If you notice any issues in this documentation you can edit this document to improve it.