ibm.isam.isam (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

force:
    default: false
    description:
    - if force is True then a call to ISAM will always happen
    required: false
    type: bool

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

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