community.general.keycloak_authentication 模块 – 在 Keycloak 中配置身份验证
注意
此模块是 community.general 集合 (版本 10.1.0) 的一部分。
如果您使用的是 ansible
包,则您可能已经安装了此集合。它不包含在 ansible-core
中。要检查它是否已安装,请运行 ansible-galaxy collection list
。
要安装它,请使用:ansible-galaxy collection install community.general
。
要在 playbook 中使用它,请指定:community.general.keycloak_authentication
。
community.general 3.3.0 中的新增功能
概要
此模块实际上只能复制现有的身份验证流程,向其中添加执行并对其进行配置。
它还可以删除流程。
参数
参数 |
注释 |
---|---|
身份验证流程的别名。 |
|
用于向 API 进行身份验证的 OpenID Connect 默认值: |
|
与 |
|
Keycloak 实例的 URL。 |
|
用于 API 访问身份验证的密码。 |
|
用于 API 访问身份验证的 Keycloak realm 名称。 |
|
用于 API 访问身份验证的用户名。 |
|
执行的配置结构。 |
|
描述身份验证的配置。 |
|
要创建或更新的执行或子流程的名称。 |
|
父流程的别名。 |
|
执行的优先级顺序。 |
|
当不从现有流程复制时,新流程的 |
|
控制子流程或执行的状态。 选项
|
|
对于新的子流程,可以选择指定类型。 仅在创建时使用。 选项
|
|
控制到 Keycloak API 的 HTTP 连接超时时间(以秒为单位)。 默认值: |
|
要用于复制的身份验证流程的 |
|
流程的描述。 |
|
如果 选项
|
|
配置 HTTP User-Agent 标头。 默认值: |
|
当不从现有流程复制时,新流程的 选项
|
|
包含身份验证的 realm 的名称。 |
|
控制身份验证流程是否必须存在。 选项
|
|
Keycloak API 的身份验证令牌。 |
|
验证 TLS 证书(生产环境中请勿禁用此选项)。 选项
|
属性
属性 |
支持 |
描述 |
---|---|---|
支持:完全支持 |
可以在 |
|
支持:完全支持 |
在差异模式下,将返回关于已更改内容(或可能需要在 |
示例
- name: Create an authentication flow from first broker login and add an execution to it.
community.general.keycloak_authentication:
auth_keycloak_url: https://127.0.0.1:8080/auth
auth_realm: master
auth_username: admin
auth_password: password
realm: master
alias: "Copy of first broker login"
copyFrom: "first broker login"
authenticationExecutions:
- providerId: "test-execution1"
requirement: "REQUIRED"
authenticationConfig:
alias: "test.execution1.property"
config:
test1.property: "value"
- providerId: "test-execution2"
requirement: "REQUIRED"
authenticationConfig:
alias: "test.execution2.property"
config:
test2.property: "value"
state: present
- name: Re-create the authentication flow
community.general.keycloak_authentication:
auth_keycloak_url: https://127.0.0.1:8080/auth
auth_realm: master
auth_username: admin
auth_password: password
realm: master
alias: "Copy of first broker login"
copyFrom: "first broker login"
authenticationExecutions:
- providerId: "test-provisioning"
requirement: "REQUIRED"
authenticationConfig:
alias: "test.provisioning.property"
config:
test.provisioning.property: "value"
state: present
force: true
- name: Create an authentication flow with subflow containing an execution.
community.general.keycloak_authentication:
auth_keycloak_url: https://127.0.0.1:8080/auth
auth_realm: master
auth_username: admin
auth_password: password
realm: master
alias: "Copy of first broker login"
copyFrom: "first broker login"
authenticationExecutions:
- providerId: "test-execution1"
requirement: "REQUIRED"
- displayName: "New Subflow"
requirement: "REQUIRED"
- providerId: "auth-cookie"
requirement: "REQUIRED"
flowAlias: "New Sublow"
state: present
- name: Remove authentication.
community.general.keycloak_authentication:
auth_keycloak_url: https://127.0.0.1:8080/auth
auth_realm: master
auth_username: admin
auth_password: password
realm: master
alias: "Copy of first broker login"
state: absent
返回值
常见的返回值已在 此处 记录,以下是此模块独有的字段
键 |
描述 |
---|---|
模块执行后身份验证的表示。 返回值:成功时返回 示例: |
|
关于采取了什么操作的消息。 返回值:始终返回 |