netscaler.adc.login module – Login to a NetScaler ADC node.
Note
This module is part of the netscaler.adc collection (version 2.6.2).
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install netscaler.adc.
To use it in a playbook, specify: netscaler.adc.login.
New in netscaler.adc 2.0.0
Synopsis
Configuration for logging in to a NetScaler ADC node.
Parameters
Parameter  | 
Comments  | 
|---|---|
Base NITRO API path. Define only in case of an ADM service proxy call Default:   | 
|
The ID of the managed NetScaler instance to which NetScaler Console has to configure as a proxy server. Define only in case of an ADM service proxy call  | 
|
The IP of the managed NetScaler instance to which NetScaler Console has to configure as a proxy server. Define only in case of an ADM service proxy call  | 
|
The name of the managed NetScaler instance to which NetScaler Console has to configure as a proxy server. Define only in case of an ADM service proxy call  | 
|
The password of the managed NetScaler instance. Define only in case of an ADM service proxy call In Settings > Administration > System Configurations > Basic Settings, if you select Prompt Credentials for Instance Login, ensure to configure username and password of a managed instance.  | 
|
The username of the managed NetScaler instance. Define only in case of an ADM service proxy call In Settings > Administration > System Configurations > Basic Settings, if you select Prompt Credentials for Instance Login, ensure to configure username and password of a managed instance.  | 
|
The IP address of the NetScaler ADC appliance acting as a proxy server. Define only in case of an ADM service proxy call Choices: 
  | 
|
The authentication token provided by a login operation.  | 
|
The password with which to authenticate to the NetScaler ADC node.  | 
|
Which protocol to use when accessing the nitro API objects. Choices: 
  | 
|
The username with which to authenticate to the NetScaler ADC node.  | 
|
The ip address of the NetScaler ADC appliance where the nitro API calls will be made. The port can be specified with the colon (:). E.g. 192.168.1.1:555.  | 
|
Password for logging into the NetScaler ADC node.  | 
|
If  The module will not save the configuration on the NetScaler ADC node if it made no changes. Choices: 
  | 
|
The state of the resource being configured by the module on the NetScaler ADC node. When  Choices: 
  | 
|
Username for logging into the NetScaler ADC node.  | 
|
If  Choices: 
  | 
Notes
Note
For more information on using Ansible to manage NetScaler ADC Network devices see https://www.ansible.com/integrations/networks/citrixadc.
Examples
---
- name: Sample login  and logout playbook
  hosts: demo_netscalers
  gather_facts: false
  tasks:
    - name: V2 | Sample Task | login
      delegate_to: localhost
      register: login_result
      netscaler.adc.login:
        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
        username: nsroot
        password: verysecretpassword
    - name: Print login sessionid
      ansible.builtin.debug:
        var: login_result.sessionid
    - name: V2 | Sample Task | nsip
      delegate_to: localhost
      netscaler.adc.nsip:
        # `nitro_auth_token` can also be given via NETSCALER_NITRO_AUTH_TOKEN environment variable
        nitro_auth_token: "{{ login_result.sessionid }}"
        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
        state: present
        ipaddress: 4.4.4.4
        netmask: 255.255.255.192
        type: VIP
    - name: V2 | Sample Task | logout
      delegate_to: localhost
      netscaler.adc.logout:
        # `nitro_auth_token` can also be given via NETSCALER_NITRO_AUTH_TOKEN environment variable
        nitro_auth_token: "{{ login_result.sessionid }}"
        # nsip: 10.0.0.1 # This can also be given via NETSCALER_NSIP environment variable
        # nitro_protocol: https # This can also be given via NETSCALER_NITRO_PROTOCOL environment variable
        # validate_certs: false # This can also be given via NETSCALER_VALIDATE_CERTS environment variable
        # save_config: false # This can also be given via NETSCALER_SAVE_CONFIG environment variable
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key  | 
Description  | 
|---|---|
Indicates if any change is made by the module. `login` module always returns `true` unless it fails. Returned: always Sample:   | 
|
Indicates if the module failed or not Returned: always Sample:   | 
|
list of logged messages by the module Returned: always Sample:   | 
|
Session ID of the logged in user Returned: always Sample:   |