Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 19 additions & 1 deletion examples/nslaslicense_offline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
hosts: demo_netscalers
gather_facts: false
tasks:
- name: Apply offline LAS license to NetScaler ADC
- name: Apply offline LAS license to NetScaler ADC (standard mode)
delegate_to: localhost
netscaler.adc.nslaslicense_offline:
nsip: "{{ nsip }}"
Expand All @@ -19,3 +19,21 @@
- name: Display license result
ansible.builtin.debug:
var: lic_result

- name: Apply offline LAS license to NetScaler ADC (restricted mode)
delegate_to: localhost
netscaler.adc.nslaslicense_offline:
nsip: "{{ nsip }}"
nitro_user: "{{ nitro_user }}"
nitro_pass: "{{ nitro_pass }}"
nitro_protocol: "{{ nitro_protocol | default('https') }}"
validate_certs: false
entitlement_name: "VPX 10000 Premium"
is_fips: false
las_secrets_json: /path/to/las_secrets.json
restricted_mode: true
register: lic_result_restricted

- name: Display restricted mode license result
ansible.builtin.debug:
var: lic_result_restricted
Loading
Loading