ubika.waap.appliance (1.0.3) — module

Manages appliances

| "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

Manages appliances

Usage examples

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

  ubika.waap.appliance:

    credentials:
      host: ubikawaap.local:3001
      username: superadmin
      password: "Denyall@0"
      verify_ssl: false
    name: Managed 1
    admin_ip: 192.168.254.192
    admin_port: 3001
    location: /
    contact: admin@ubikawaap.com
    sysctl_profile: null

Inputs

    
name:
    description:
    - Name of the appliance.
    required: true
    type: str

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

contact:
    description:
    - Information to contact the appliance's administrator.
    required: false
    type: str

admin_ip:
    description:
    - Appliance IP address.
    required: true
    type: str

location:
    description:
    - The location of the appliance.
    required: false
    type: str

admin_port:
    description:
    - TCP port to connect to the web controller.
    required: true
    type: str

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

sysctl_profile:
    description:
    - The uid of sysctl profile.
    required: false
    type: str