ibm.isam.isamcompare (1.1.1) — module

This module will make calls to connection

Authors: Ram Sreerangam (@ram-ibm)

Install collection

Install with ansible-galaxy collection install ibm.isam:==1.1.1


Add to requirements.yml

  collections:
    - name: ibm.isam
      version: 1.1.1

Description

This module will make calls to connection

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Configure access control attributes
  ibm.isam.isam:
    log:       "{{ log_level | default(omit) }}"
    force:     "{{ force | default(omit) }}"
    action: ibmsecurity.isam.aac.attributes.get
    isamapi: "{{ item }}"
  when: item is defined
  with_items: "{{ get_access_control_attributes }}"
  register: ret_obj

Inputs

    
log:
    choices:
    - DEBUG
    - INFO
    - ERROR
    - CRITICAL
    default: INFO
    description:
    - level for log setting
    required: false
    type: str

action:
    description:
    - name of the ibmsecurity call
    required: true
    type: str

isamapi:
    description: parameters to pass to the ibmsecurity call
    required: false
    type: dict

lmi_port1:
    default: 443
    description: port of the first appliance
    required: false
    type: int

lmi_port2:
    default: 443
    description: port of the 2nd appliance
    required: false
    type: int

password1:
    description: password to log into the first appliance
    required: true
    type: str

password2:
    description: password to log into the 2nd appliance
    required: true
    type: str

username1:
    description: username to log into the first appliance
    required: false
    type: str

username2:
    description: username to log into the 2nd appliance
    required: false
    type: str

appliance1:
    description: ip address of the first appliance
    required: true
    type: str

appliance2:
    description: ip address of the 2nd appliance
    required: true
    type: str