ubika.waap.license (1.0.3) — module

Managed licenses

| "added in version" 1.0.0 of ubika.waap"

Authors: UBIKA team (@ubika_team)

Install collection

Install with ansible-galaxy collection install ubika.waap:==1.0.3


Add to requirements.yml

  collections:
    - name: ubika.waap
      version: 1.0.3

Description

Manage certificates

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: have license

  ubika.waap.license:

    credentials:
      host: ubikawaap.local:3001
      username: superadmin
      password: "Denyall@1"
      verify_ssl: false
    upload: ./files/QACluster_VP-VMware-56-4d-d0-f2-76-51-b1-5e-1b-b8-d2-6c-df-7c-62-4e-1547199966.lic

Inputs

    
state:
    choices:
    - present
    - absent
    default: present
    description:
    - State of the license.
    type: str

upload:
    description:
    - The path to the licens file.
    required: false
    type: path

credentials:
    description:
    - Credentials for UBIKA WAAP Gateway
    required: true
    suboptions:
      host:
        description:
        - UBIKA WAAP Gateway host
        required: true
        type: str
      password:
        description:
        - Administrator password
        required: true
        type: str
      username:
        description:
        - Administrator user name
        required: true
        type: str
      verify_ssl:
        default: true
        description:
        - Set to false to disable SSL verification
        type: bool
    type: dict