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
21 changes: 21 additions & 0 deletions examples/nslaslicense_offline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
---
- name: Sample nslaslicense_offline playbook
hosts: demo_netscalers
gather_facts: false
tasks:
- name: Apply offline LAS license to NetScaler ADC
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
register: lic_result

- name: Display license result
ansible.builtin.debug:
var: lic_result
Loading
Loading