check_point.mgmt.cp_mgmt_passcode_profile 模块 – 通过 Web Services API 管理 Checkpoint 上的密码配置文件对象

注意

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

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

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

要在 playbook 中使用它,请指定:check_point.mgmt.cp_mgmt_passcode_profile

check_point.mgmt 6.0.0 中的新功能

概要

  • 管理 Checkpoint 设备上的密码配置文件对象,包括创建、更新和删除对象。

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

参数

参数

注释

allow_simple_passcode

boolean

密码长度为 4,并且仅允许使用数字值。

选项

  • false

  • true

auto_publish_session

boolean

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

选项

  • false ← (默认)

  • true

color

string

对象的颜色。应为现有颜色之一。

选项

  • "海蓝色"

  • "黑色"

  • "蓝色"

  • "克里特岛 蓝色"

  • "浅棕色"

  • "青色"

  • "深 绿色"

  • "卡其色"

  • "兰花色"

  • "深 橙色"

  • "深 绿色"

  • "粉红色"

  • "绿松石色"

  • "深 蓝色"

  • "火砖色"

  • "棕色"

  • "森林 绿色"

  • "金色"

  • "深 金色"

  • "灰色"

  • "深 灰色"

  • "浅 绿色"

  • "柠檬 雪纺"

  • "珊瑚色"

  • "海 绿色"

  • "天 蓝色"

  • "洋红色"

  • "紫色"

  • "板岩 蓝色"

  • "紫罗兰 红色"

  • "海军 蓝色"

  • "橄榄色"

  • "橙色"

  • "红色"

  • "赭色"

  • "黄色"

comments

string

注释字符串。

details_level

string

响应中某些字段的详细程度可能从仅显示对象的 UID 值到对象的完整详细表示形式不等。

选项

  • "uid"

  • "标准"

  • "完整"

domains_to_process

list / elements=string

指示要在哪些域上处理命令。它不能与详细级别完全一起使用,必须仅从系统域运行,并且 ignore-warnings 为 true。有效值为 CURRENT_DOMAIN、ALL_DOMAINS_ON_THIS_SERVER。

enable_inactivity_time_lock

boolean

如果应用程序处于非活动状态,则锁定设备。

选项

  • false

  • true

enable_passcode_failed_attempts

boolean

在密码验证失败几次后退出。

选项

  • false

  • true

enable_passcode_history

boolean

检查密码历史记录以进行修复。

选项

  • false

  • true

force_passcode_expiration

boolean

启用/禁用密码的过期日期。

选项

  • false

  • true

ignore_errors

boolean

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

选项

  • false

  • true

ignore_warnings

boolean

应用更改时忽略警告。

选项

  • false

  • true

max_inactivity_time_lock

integer

在必须重新输入密码之前没有用户输入的时间(以分钟为单位)。

max_passcode_failed_attempts

integer

允许的失败尝试次数。

min_passcode_complex_characters

integer

最少复杂字符数(如果启用了“require-alphanumeric-passcode”)。复杂字符的数量不能大于密码长度的数量。

min_passcode_length

integer

最小密码长度 - 如果禁用“allow-simple-passcode”,则相关。

name

string / required

对象名称。

passcode_expiration_period

integer

密码将在多少天后过期。

passcode_history

integer

将保存在历史记录中的密码数量。

require_alphanumeric_passcode

boolean

要求密码中包含字母数字字符 - 如果禁用“allow-simple-passcode”,则相关。

选项

  • false

  • true

state

string

访问规则的状态(存在或不存在)。

选项

  • "present" ← (默认)

  • "absent"

tags

list / elements=string

标签标识符的集合。

version

string

Checkpoint 的版本。如果未提供版本,则采用最新版本。

wait_for_task

boolean

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

选项

  • false

  • true ← (默认)

wait_for_task_timeout

integer

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

默认值: 30

示例

- name: add-passcode-profile
  cp_mgmt_passcode_profile:
    name: New App Passcode Policy
    state: present

- name: set-passcode-profile
  cp_mgmt_passcode_profile:
    allow_simple_passcode: 'true'
    max_inactivity_time_lock: '30'
    name: New App Passcode Policy
    require_alphanumeric_passcode: 'false'
    state: present

- name: delete-passcode-profile
  cp_mgmt_passcode_profile:
    name: My App Passcode Policy
    state: absent

返回值

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

描述

cp_mgmt_passcode_profile

字典

创建或更新的检查点对象。

返回: 始终返回,删除对象时除外。

作者

  • Eden Brillant (@chkp-edenbr)