ansible.builtin.icinga2_feature (v2.5.12) — module

Manage Icinga2 feature

| "added in version" 2.3 of ansible.builtin"

Authors: Loic Blot (@nerzhul)

preview | supported by community

Install Ansible via pip

Install with pip install ansible==2.5.12

Description

Enable or disable an Icinga2 feature

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Enable ido-pgsql feature
  icinga2_feature:
    name: ido-pgsql
    state: present

Inputs

    
name:
    description:
    - This is the feature name to enable or disable.
    required: true

state:
    choices:
    - present
    - absent
    default: present
    description:
    - Apply feature state.
    required: false