- Docs »
- icinga2_feature - Manage Icinga2 feature
-
You are reading an unmaintained version of the Ansible documentation. Unmaintained Ansible versions can contain unfixed security vulnerabilities (CVE). Please upgrade to a maintained version. See the latest Ansible documentation.
icinga2_feature - Manage Icinga2 feature
- This module can be used to enable or disable an Icinga2 feature.
Parameter |
Choices/Defaults |
Comments |
name
required |
|
This is the feature name to enable or disable.
|
state
|
Choices:
present ←
- absent
|
If set to present and feature is disabled, then feature is enabled.
If set to present and feature is already enabled, then nothing is changed.
If set to absent and feature is enabled, then feature is disabled.
If set to absent and feature is already disabled, then nothing is changed.
|
- name: Enable ido-pgsql feature
icinga2_feature:
name: ido-pgsql
state: present
- name: Disable api feature
icinga2_feature:
name: api
state: absent
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
This module is flagged as community which means that it is maintained by the Ansible Community. See Module Maintenance & Support for more info.
For a list of other modules that are also maintained by the Ansible Community, see here.
Hint
If you notice any issues in this documentation you can edit this document to improve it.