Documentation

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.

Synopsis

  • Manages Citrix NetScaler server and service entities.

Parameters

Parameter Choices/Defaults Comments
action
    Choices:
  • disable ←
  • enable
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
    Choices:
  • server ←
  • service
Type of the entity.
user
required
Username.
validate_certs
bool
    Choices:
  • no
  • yes ←
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 is flagged as deprecated and will be removed in version 2.8. For more information see DEPRECATED.

Author

  • Nandor Sivok (@dominis)

Hint

If you notice any issues in this documentation you can edit this document to improve it.