ibm.qradar.deploy module – Trigger a qradar configuration deployment

Note

This module is part of the ibm.qradar collection (version 2.1.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.deploy.

New in ibm.qradar 1.0.0

Synopsis

  • This module allows for INCREMENTAL or FULL deployments

Aliases: qradar_deploy

Parameters

Parameter

Comments

type

string

Type of deployment

Choices:

  • "INCREMENTAL" ← (default)

  • "FULL"

Notes

Note

  • This module does not support check mode because the QRadar REST API does not offer stateful inspection of configuration deployments

Examples

- name: run an incremental deploy
  ibm.qradar.deploy:
    type: INCREMENTAL

Authors