ubika.waap.icx (1.0.3) — module

Manage icx configuration

| "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 Manage icx configuration.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Have test ICX configuration
  ubika.waap.icx:
    credentials:
      host: ubikawaap.local:3001
      password: Denyall@0
      username: superadmin
      verify_ssl: false
    name: test
    description: "ICX configuration description"
    template:
      uid: icxtplowa2010
    legacy_resolve: false

Inputs

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

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

template:
    description:
    - The template of the ICX configuration.
    required: false
    suboptions:
      uid:
        description:
        - Uid of the template.
        required: true
        type: str
    type: dict

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

description:
    description:
    - Description of the ICX configuration.
    required: false
    type: str

legacy_resolve:
    default: false
    description:
    - Indicates how to resolve false positives generated by the policy.
    required: false
    type: bool