ansible.builtin.panos_lic (v2.6.0) — module

apply authcode to a device/instance

| "added in version" 2.3 of ansible.builtin"

Authors: Luigi Mori (@jtschichold), Ivan Bojer (@ivanbojer)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.6.0

Description

Apply an authcode to a device.

The authcode should have been previously registered on the Palo Alto Networks support portal.

The device should have Internet access.


Requirements

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
    - hosts: localhost
      connection: local
      tasks:
        - name: fetch license
          panos_lic:
            ip_address: "192.168.1.1"
            password: "paloalto"
            auth_code: "IBADCODE"
          register: result
  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
    - name: Display serialnumber (if already registered)
      debug:
        var: "{{result.serialnumber}}"

Inputs

    
force:
    default: 'false'
    description:
    - whether to apply authcode even if device is already licensed
    required: false

password:
    description:
    - Password for authentication.
    required: true
    type: str

username:
    default: admin
    description:
    - Username for authentication.
    type: str

auth_code:
    description:
    - authcode to be applied
    required: true

ip_address:
    description:
    - IP address (or hostname) of PAN-OS device.
    required: true
    type: str

Outputs

serialnumber:
  description: serialnumber of the device in case that it has been already registered
  returned: success
  sample: 973080716
  type: string