netscaler – Manages Citrix NetScaler entities

From Get docs
Ansible/docs/2.7/modules/netscaler module


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

-

  • 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

-

  • server

  • service

Type of the entity.

user

- / required

Username.

validate_certs

boolean

  • 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 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.


© 2012–2018 Michael DeHaan
© 2018–2019 Red Hat, Inc.
Licensed under the GNU General Public License version 3.
https://docs.ansible.com/ansible/2.7/modules/netscaler_module.html