ibm.qradar.offense_note module – Create or update a QRadar Offense Note

Note

This module is part of the ibm.qradar collection (version 3.0.0).

You might already have this collection installed if you are using the ansible package. It is not included in ansible-core. To check whether it is installed, run ansible-galaxy collection list.

To install it, use: ansible-galaxy collection install ibm.qradar.

To use it in a playbook, specify: ibm.qradar.offense_note.

New in ibm.qradar 1.0.0

Synopsis

  • This module allows to create a QRadar Offense note

Aliases: qradar_offense_note

Parameters

Parameter

Comments

id

integer / required

Offense ID to operate on

note_text

string / required

The note’s text contents

Examples

- name: Add a note to QRadar Offense ID 1
  ibm.qradar.offense_note:
    id: 1
    note_text: This an example note entry that should be made on offense id 1

Authors