check_point.mgmt.cp_mgmt_set_idp_to_domain_assignment 模块 – 设置身份提供商到域的分配,以便允许管理员使用该身份提供商登录到该域。如果未向该域分配身份提供商,将使用 ‘idp-default-assignment’。此命令仅适用于多域服务器。

注意

此模块是 check_point.mgmt 集合(版本 6.2.1)的一部分。

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

要安装它,请使用:ansible-galaxy collection install check_point.mgmt

要在剧本中使用它,请指定:check_point.mgmt.cp_mgmt_set_idp_to_domain_assignment

check_point.mgmt 3.0.0 中的新功能

概要

  • 设置身份提供商到域的分配,以便允许管理员使用该身份提供商登录到该域。如果未向该域分配身份提供商,将使用 ‘idp-default-assignment’。此命令仅适用于多域服务器。

  • 所有操作均通过 Web Services API 执行。

参数

参数

注释

assigned_domain

字符串

表示由 ‘idp-to-domain-assignment’ 分配的域,需要是域名或 UID。

auto_publish_session

布尔值

在任务完成后,如果执行了更改,则发布当前会话。

选项

  • false ←(默认)

  • true

details_level

字符串

响应中某些字段的详细级别可能会有所不同,从仅显示对象的 UID 值到对象的完整详细表示。

选项

  • “uid”

  • “standard”

  • “full”

identity_provider

字符串

表示此分配用于登录的身份提供商。当“using-default”设置为 false 时,必须设置。

ignore_errors

布尔值

应用更改时忽略错误。您将无法发布此类更改。如果省略 ignore-warnings 标志,则也会忽略警告。

选项

  • false

  • true

ignore_warnings

布尔值

应用更改时忽略警告。

选项

  • false

  • true

using_default

布尔值

此分配是否被 ‘idp-default-assignment’ 覆盖。

选项

  • false

  • true

version

字符串

Check Point 的版本。如果未指定版本,则采用最新版本。

wait_for_task

布尔值

等待任务结束。例如发布任务。

选项

  • false

  • true ←(默认)

wait_for_task_timeout

整数

等待多少分钟后抛出超时错误。

默认值: 30

示例

- name: set-idp-to-domain-assignment
  cp_mgmt_set_idp_to_domain_assignment:
    assigned_domain: BSMS
    identity_provider: okta

返回值

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

描述

cp_mgmt_set_idp_to_domain_assignment

字典

Check Point set-idp-to-domain-assignment 的输出。

返回:总是。

作者

  • Eden Brillant (@chkp-edenbr)