telekom_mms.icinga_director.icinga_user_group 模块 – 在 Icinga2 中管理用户组

注意

此模块是 telekom_mms.icinga_director 集合 (版本 2.2.1) 的一部分。

如果您正在使用 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install telekom_mms.icinga_director

要在 playbook 中使用它,请指定: telekom_mms.icinga_director.icinga_user_group

telekom_mms.icinga_director 1.16.0 中的新增功能

概要

  • 通过 director API 添加或删除 Icinga2 的用户组。

参数

参数

注释

append

布尔值

telekom_mms.icinga_director 1.25.0 中添加

不要覆盖整个对象,而是附加定义的属性。

注意 - 无法追加到现有变量、导入或任何其他列表/字典。您必须覆盖完整的列表/字典。

注意 - 即使未设置,默认设置的变量也将被应用。

选项

  • false

  • true

client_cert

路径

用于 SSL 客户端身份验证的 PEM 格式证书链文件。

此文件也可以包含密钥,如果包含密钥,则不需要 client_key

client_key

路径

包含用于 SSL 客户端身份验证的私钥的 PEM 格式文件。

如果 client_cert 包含证书和密钥,则不需要此选项。

disabled

布尔值

已禁用的对象将不会部署。

选项

  • false ← (默认)

  • true

display_name

字符串

此用户组的替代名称。

如果您的对象名称是用户名,这可能是相应人员的全名。

force

布尔值

如果为 yes,则不会获取缓存副本。

选项

  • false ← (默认)

  • true

force_basic_auth

布尔值

使用 url_usernameurl_password 指定的凭据应通过 HTTP 头传递。

选项

  • false ← (默认)

  • true

http_agent

字符串

用于标识的标头,通常显示在 Web 服务器日志中。

默认值: "ansible-httpget"

object_name

别名:name

字符串 / 必需

用户组的名称。

state

字符串

应用功能状态。

选项

  • "present" ← (默认)

  • "absent"

url

字符串 / 必需

形式为 (http|https|ftp)://[user[:pass]]@host.domain[:port]/path 的 HTTP、HTTPS 或 FTP URL

url_password

字符串

用于 HTTP 基本身份验证的密码。

如果未指定 url_username 参数,则不会使用 url_password 参数。

url_username

字符串

用于 HTTP 基本身份验证的用户名。

此参数可与 url_password 一起使用,用于允许空密码的站点

use_gssapi

布尔值

ansible-core 2.11 中添加

使用 GSSAPI 执行身份验证,通常用于 Kerberos 或通过协商身份验证的 Kerberos。

需要安装 Python 库 gssapi

GSSAPI 的凭据可以使用 url_username/url_password 指定,或者使用指定自定义 Kerberos 凭据缓存的 GSSAPI 环境变量 KRB5CCNAME

即使已安装用于 NTLM 的 GSSAPI 机制,也不支持 NTLM 身份验证。

选项

  • false ← (默认)

  • true

use_proxy

布尔值

如果为 no,则即使目标主机上的环境变量中定义了代理,它也不会使用代理。

选项

  • false

  • true ← (默认)

validate_certs

布尔值

如果 no,则不会验证SSL证书。

这应该只用于使用自签名证书的个人控制站点。

选项

  • false

  • true ← (默认)

备注

注意

  • 此模块支持检查模式。

示例

- name: Create user group
  telekom_mms.icinga_director.icinga_user_group:
    state: present
    url: "{{ icinga_url }}"
    url_username: "{{ icinga_user }}"
    url_password: "{{ icinga_pass }}"
    object_name: "onCall"
    disabled: false

- name: Update user group
  telekom_mms.icinga_director.icinga_user_group:
    state: present
    url: "{{ icinga_url }}"
    url_username: "{{ icinga_user }}"
    url_password: "{{ icinga_pass }}"
    object_name: "onCall"
    display_name: "on call group"
    append: true

作者

  • Sebastian Gumprich (@rndmh3ro)