cappysan.idrac.eventfilters_set

cappysan.idrac.eventfilters_set module – Set eventfilters for iDRAC alerts.

Note

This module is part of the cappysan.idrac collection.

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 cappysan.idrac.

To use it in a playbook, specify: cappysan.idrac.eventfilters_set.

Synopsis

  • Set eventfilters for iDRAC alerts. If the value is already correct, no set will take place.

Note

This module has a corresponding action plugin.

Parameters

Parameter

Comments

action

string / required

Eventfilter action to take place. Comma separated list.

Default: "True"

key

string / required

eventfilters full key name.

notifications

string / required

Eventfilter notification to take place. Comma separated list.

Default: "True"

skip_missing

boolean

When event filter configuration key does not exist, skip it instead of throwing an error.

Choices:

  • false ← (default)

  • true

Attributes

Attribute

Support

Description

check_mode

Support: full

Can run in check_mode and return changed status prediction without modifying target.

diff_mode

Support: none

Will return details on what has changed (or possibly needs changing in check_mode), when in diff mode.

Examples

- name: "Set iDRAC eventfilters"
  cappysan.idrac.eventfilters_set:
    key: "idrac.alert.system.amp.warning"
    action: "none"
    notification: "email"