Deprecated

Removed in 2.8

i

Reason:Replaced with Citrix maintained version. | Alternative:Use M(netscaler_service) and M(netscaler_server) instead.

ansible.builtin._netscaler (v2.7.18) — module

Manages Citrix NetScaler entities

| "added in version" 1.1 of ansible.builtin"

Authors: Nandor Sivok (@dominis)

deprecated | supported by community

Install Ansible via pip

Install with pip install ansible==2.7.18

Description

Manages Citrix NetScaler server and service entities.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Disable the server
  netscaler:
    nsc_host: nsc.example.com
    user: apiuser
    password: apipass
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Enable the server
  netscaler:
    nsc_host: nsc.example.com
    user: apiuser
    password: apipass
    action: enable
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Disable the service local:8080
  netscaler:
    nsc_host: nsc.example.com
    user: apiuser
    password: apipass
    name: local:8080
    type: service
    action: disable

Inputs

    
name:
    default: hostname
    description:
    - Name of the entity.
    required: true

type:
    choices:
    - server
    - service
    default: server
    description:
    - Type of the entity.

user:
    description:
    - Username.
    required: true

action:
    choices:
    - disable
    - enable
    default: disable
    description:
    - The action you want to perform on the entity.

nsc_host:
    description:
    - Hostname or ip of your netscaler.
    required: true

password:
    description:
    - Password.
    required: true

nsc_protocol:
    default: https
    description:
    - Protocol used to access netscaler.

validate_certs:
    default: 'yes'
    description:
    - If C(no), SSL certificates for the target url will not be validated.
    - This should only be used on personally controlled sites using self-signed certificates.
    type: bool