dellemc.openmanage.ome_active_directory 模块 – 配置用于目录服务的 Active Directory 组
注意
此模块是 dellemc.openmanage 集合(版本 9.9.0)的一部分。
如果您正在使用 ansible
包,您可能已经安装了此集合。它不包含在 ansible-core
中。要检查是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install dellemc.openmanage
。您需要进一步的要求才能使用此模块,请参阅 要求 以获取详细信息。
要在 playbook 中使用它,请指定:dellemc.openmanage.ome_active_directory
。
dellemc.openmanage 4.0.0 中的新增功能
概要
此模块允许添加、修改和删除 OpenManage Enterprise 与 Active Directory 服务的连接。
要求
在执行此模块的主机上需要以下要求。
python >= 3.9.6
参数
参数 |
注释 |
---|---|
包含用于验证的 CA 证书的隐私增强邮件 (PEM) 文件。 |
|
提供 SSL 证书的完整路径。 证书应为 Base64 格式编码的根 CA 证书。 当 validate_certificate 为 |
|
选择域控制器查找方法。 选项
|
|
域控制器端口。 默认情况下,会填充全局编录地址端口号 3269。 对于域控制器访问,请输入 636 作为端口号。
默认值: |
|
提供域密码。 当 test_connection 为 |
|
输入域控制器域名或 FQDN 或 IP 地址。 如果 domain_controller_lookup 为 如果 domain_controller_lookup 为 |
|
以 UPN(username@domain)或 NetBIOS (domain\\username) 格式提供域名用户名。 当 test_connection 为 |
|
以 |
|
OpenManage Enterprise 或 OpenManage Enterprise Modular IP 地址或主机名。 |
|
提供现有 Active Directory 服务连接的 ID。 这适用于修改和删除。 这与 name 互斥。 |
|
提供 Active Directory 连接的名称。 这适用于创建和删除。 这与 name 互斥。 |
|
输入网络超时持续时间,以秒为单位。 支持的超时持续时间范围为 15 到 300 秒。 默认值: |
|
OpenManage Enterprise 或 OpenManage Enterprise Modular 密码。 如果未提供密码,则使用环境变量 示例:export OME_PASSWORD=password |
|
OpenManage Enterprise 或 OpenManage Enterprise Modular HTTPS 端口。 默认值: |
|
输入搜索超时持续时间,以秒为单位。 支持的超时持续时间范围为 15 到 300 秒。 默认值: |
|
选项
|
|
启用测试与域控制器的连接。 使用提供的 Active Directory 服务详细信息测试与域控制器的连接。 如果测试失败,模块将报错。 如果 选项
|
|
套接字级别的超时时间,以秒为单位。 默认值: |
|
OpenManage Enterprise 或 OpenManage Enterprise Modular 用户名。 如果未提供用户名,则使用环境变量 示例:export OME_USERNAME=username |
|
启用验证域控制器的 SSL 证书。 当此项为 选项
|
|
如果 仅在个人控制的使用自签名证书的站点上配置 在集合版本 选项
|
|
身份验证令牌。 如果未提供 x_auth_token,则会使用环境变量 示例: export OME_X_AUTH_TOKEN=x_auth_token |
备注
注意
当 validate_certificate 为
true
时,此模块将始终报告更改。从可以直接访问 OpenManage Enterprise 的系统运行此模块。
此模块支持
check_mode
。
示例
---
- name: Add Active Directory service using DNS lookup along with the test connection
dellemc.openmanage.ome_active_directory:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
name: my_ad1
domain_server:
- domainname.com
group_domain: domainname.com
test_connection: true
domain_username: user@domainname
domain_password: domain_password
- name: Add Active Directory service using IP address of the domain controller with certificate validation
dellemc.openmanage.ome_active_directory:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
name: my_ad2
domain_controller_lookup: MANUAL
domain_server:
- 192.68.20.181
group_domain: domainname.com
validate_certificate: true
certificate_file: "/path/to/certificate/file.cer"
- name: Modify domain controller IP address, network_timeout and group_domain
dellemc.openmanage.ome_active_directory:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
name: my_ad2
domain_controller_lookup: MANUAL
domain_server:
- 192.68.20.189
group_domain: newdomain.in
network_timeout: 150
- name: Delete Active Directory service
dellemc.openmanage.ome_active_directory:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
name: my_ad2
state: absent
- name: Test connection to existing Active Directory service with certificate validation
dellemc.openmanage.ome_active_directory:
hostname: "192.168.0.1"
username: "username"
password: "password"
ca_path: "/path/to/ca_cert.pem"
name: my_ad2
test_connection: true
domain_username: user@domainname
domain_password: domain_password
validate_certificate: true
certificate_file: "/path/to/certificate/file.cer"
返回值
常见返回值记录在这里,以下是此模块特有的字段
键 |
描述 |
---|---|
此模块添加、修改或删除的 Active Directory。 返回: 发生更改时 示例: |
|
HTTP 错误的详细信息。 返回: 发生 HTTP 错误时 示例: |
|
Active Directory 操作的总体状态。 返回: 始终 示例: |