telekom_mms.icinga_director.icinga_serviceset 模块 – 在 Icinga2 中管理服务集
注意
此模块是 telekom_mms.icinga_director 集合 (版本 2.2.1) 的一部分。
如果您使用的是 ansible
包,则可能已安装此集合。它不包含在 ansible-core
中。要检查是否已安装它,请运行 ansible-galaxy collection list
。
要安装它,请使用: ansible-galaxy collection install telekom_mms.icinga_director
。
要在剧本中使用它,请指定: telekom_mms.icinga_director.icinga_serviceset
。
telekom_mms.icinga_director 1.29.0 中的新增功能
概要
通过 director API 添加或删除 Icinga2 的服务集。
参数
参数 |
注释 |
---|---|
不覆盖整个对象,而是追加定义的属性。 注意 - 无法追加到现有的变量、导入或任何其他列表/字典。您必须覆盖完整的列表/字典。 注意 - 即使未设置,默认设置的变量也会应用。 选项
|
|
这允许您配置分配过滤器。 您可以随意组合任意数量的嵌套运算符。 |
|
用于 SSL 客户端身份验证的 PEM 格式证书链文件。 此文件也可以包含密钥,如果包含密钥,则不需要 |
|
包含用于 SSL 客户端身份验证的私钥的 PEM 格式文件。 如果 |
|
一个有意义的描述,向用户解释分配此服务集时应该期待什么。 |
|
如果为 选项
|
|
用于识别的标头,通常出现在 Web 服务器日志中。 默认值: |
|
此服务集的 Icinga 对象名称。 |
|
应用功能状态。 选项
|
|
HTTP、HTTPS 或 FTP URL,格式为 (http|https|ftp)://[user[:pass]]@host.domain[:port]/path |
|
用于 HTTP 基本身份验证的密码。 如果未指定 |
|
用于 HTTP 基本身份验证的用户名。 此参数可与 |
|
使用 GSSAPI 执行身份验证,通常用于 Kerberos 或通过协商身份验证的 Kerberos。 需要安装 Python 库 gssapi。 GSSAPI 的凭据可以使用 即使已安装 NTLM 的 GSSAPI 机制,也不支持 NTLM 身份验证。 选项
|
|
如果为 选项
|
|
如果为 这仅应在使用自签名证书的个人控制站点上使用。 选项
|
备注
注意
此模块支持检查模式。
示例
- name: Create serviceset
telekom_mms.icinga_director.icinga_serviceset:
state: present
url: "{{ icinga_url }}"
url_username: "{{ icinga_user }}"
url_password: "{{ icinga_pass }}"
object_name: "foo_serviceset"
assign_filter: 'host.name="foohost"'
description: "foo description"
- name: Update serviceset
telekom_mms.icinga_director.icinga_serviceset:
state: present
url: "{{ icinga_url }}"
url_username: "{{ icinga_user }}"
url_password: "{{ icinga_pass }}"
object_name: "foo_serviceset"
assign_filter: 'host.name="foohost2"'
append: true