theforeman.foreman.auth_source_ldap 模块 – 管理 LDAP 身份验证源

注意

此模块是 theforeman.foreman 集合(版本 4.2.0)的一部分。

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

要安装它,请使用: ansible-galaxy collection install theforeman.foreman。您需要更多要求才能使用此模块,请参阅 要求了解详细信息。

要在 playbook 中使用它,请指定:theforeman.foreman.auth_source_ldap

theforeman.foreman 1.0.0 中的新功能

概要

  • 创建、更新和删除 LDAP 身份验证源

别名:foreman_auth_source_ldap

要求

执行此模块的主机上需要以下要求。

  • requests

参数

参数

注释

account

字符串

访问 LDAP 服务器时使用的帐户名称。

account_password

字符串

访问 LDAP 服务器时使用的帐户密码。

使用 onthefly_register 时必需。

设置此参数后,模块将不是幂等的。

attr_firstname

字符串

包含名字的属性。

使用 onthefly_register 时必需。

attr_lastname

字符串

包含姓氏的属性。

使用 onthefly_register 时必需。

attr_login

字符串

包含登录 ID 的属性。

使用 onthefly_register 时必需。

attr_mail

字符串

包含电子邮件地址的属性。

使用 onthefly_register 时必需。

attr_photo

字符串

包含用户照片的属性

base_dn

字符串

搜索时使用的基本 DN。

groups_base

字符串

组所在的基本 DN。

host

字符串 / 必需

LDAP 服务器的主机名

ldap_filter

字符串

应用于 LDAP 搜索的过滤器

locations

列表 / elements=string

实体应分配到的位置列表

name

字符串 / 必需

LDAP 身份验证源的名称

onthefly_register

布尔值

是否动态注册用户。

选择

  • false

  • true

organizations

列表 / elements=string

实体应分配到的组织列表

password

字符串 / 必需

访问 Foreman 服务器的用户的密码。

如果任务中未指定该值,则将改用环境变量 FOREMAN_PASSWORD 的值。

port

整数

LDAP 服务器的端口号

默认值: 389

server_type

字符串

LDAP 服务器的类型

选择

  • "free_ipa"

  • "active_directory"

  • "posix"

server_url

字符串 / 必需

Foreman 服务器的 URL。

如果任务中未指定该值,则将改用环境变量 FOREMAN_SERVER_URL 的值。

state

字符串

实体的状态

选择

  • "present" ← (默认)

  • "absent"

tls

布尔值

是否在联系 LDAP 服务器时使用 TLS。

选择

  • false

  • true

use_netgroups

布尔值

是否使用 NIS 网络组而不是 posix 组,对于 server_type=active_directory 无效

选择

  • false

  • true

usergroup_sync

布尔值

是否在登录时同步外部用户组

选择

  • false

  • true

username

字符串 / 必需

访问 Foreman 服务器的用户名。

如果任务中未指定该值,则将改用环境变量 FOREMAN_USERNAME 的值。

validate_certs

布尔值

是否验证 Foreman 服务器的 TLS 证书。

如果任务中未指定该值,则将改用环境变量 FOREMAN_VALIDATE_CERTS 的值。

选择

  • false

  • true ← (默认)

属性

属性

支持

描述

check_mode

支持:完全

可以在 check_mode 中运行并返回更改的状态预测,而无需修改实体

diff_mode

支持:完全

在 diff 模式下,将返回已更改(或可能需要在 check_mode 中更改)的详细信息

示例

- name: Simple FreeIPA authentication source
  theforeman.foreman.auth_source_ldap:
    name: "Example LDAP"
    host: "ldap.example.org"
    server_url: "https://foreman.example.com"
    locations:
      - "Uppsala"
    organizations:
      - "Sweden"
    username: "admin"
    password: "changeme"
    state: present

- name: FreeIPA with automatic registration
  theforeman.foreman.auth_source_ldap:
    name: "Example LDAP"
    host: "ldap.example.org"
    onthefly_register: true
    account: uid=ansible,cn=sysaccounts,cn=etc,dc=example,dc=com
    account_password: secret
    base_dn: dc=example,dc=com
    groups_base: cn=groups,cn=accounts, dc=example,dc=com
    server_type: free_ipa
    attr_login: uid
    attr_firstname: givenName
    attr_lastname: sn
    attr_mail: mail
    attr_photo: jpegPhoto
    server_url: "https://foreman.example.com"
    username: "admin"
    password: "changeme"
    state: present

- name: Active Directory with automatic registration
  theforeman.foreman.auth_source_ldap:
    name: "Example AD"
    host: "ad.example.org"
    onthefly_register: true
    account: EXAMPLE\ansible
    account_password: secret
    base_dn: cn=Users,dc=example,dc=com
    groups_base: cn=Users,dc=example,dc=com
    server_type: active_directory
    attr_login: sAMAccountName
    attr_firstname: givenName
    attr_lastname: sn
    attr_mail: mail
    ldap_filter: (memberOf=CN=Domain Users,CN=Users,DC=example,DC=com)
    server_url: "https://foreman.example.com"
    username: "admin"
    password: "changeme"
    state: present

返回值

常见的返回值记录在此处,以下是此模块独有的字段

描述

entity

字典

受影响实体的最终状态,按其类型分组。

返回:成功

auth_source_ldaps

列表 / 元素=字典

用于 LDAP 的身份验证源列表。

返回:成功

作者

  • Christoffer Reijer (@ephracis) Basalt AB