Skip to content
Closed
2 changes: 1 addition & 1 deletion .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v5

- name: Run Trivy vulnerability scanner in repo mode
uses: aquasecurity/trivy-action@0.33.1
uses: aquasecurity/trivy-action@v0.34.0
with:
scan-type: "fs"
ignore-unfixed: true
Expand Down
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