.. Document meta
:orphan:
.. |antsibull-internal-nbsp| unicode:: 0xA0
:trim:
.. meta::
:antsibull-docs: 2.24.0
.. Anchors
.. _ansible_collections.middleware_automation.keycloak.keycloak_authz_permission_module:
.. Anchors: short name for ansible.builtin
.. Title
keycloak_authz_permission -- Allows administration of Keycloak client authorization permissions using Keycloak API
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
.. Collection note
.. note::
This module is part of the `middleware_automation.keycloak collection `_.
It is not included in ``ansible-core``.
To check whether it is installed, run :code:`ansible-galaxy collection list`.
To install it, use: :code:`ansible\-galaxy collection install middleware\_automation.keycloak`.
To use it in a playbook, specify: :code:`middleware_automation.keycloak.keycloak_authz_permission`.
.. version_added
.. rst-class:: ansible-version-added
New in middleware\_automation.keycloak 3.0.0
.. contents::
:local:
:depth: 1
.. Deprecated
Synopsis
--------
.. Description
- This module allows the administration of Keycloak client authorization permissions using the Keycloak REST API. Authorization permissions are only available if a client has Authorization enabled.
- There are some peculiarities in JSON paths and payloads for authorization permissions. In particular POST and PUT operations are targeted at permission endpoints, whereas GET requests go to policies endpoint. To make matters more interesting the JSON responses from GET requests return data in a different format than what is expected for POST and PUT. The end result is that it is not possible to detect changes to things like policies, scopes or resources \- at least not without a large number of additional API calls. Therefore this module always updates authorization permissions instead of attempting to determine if changes are truly needed.
- This module requires access to the REST API using OpenID Connect; the user connecting and the realm being used must have the requisite access rights. In a default Keycloak installation, admin\-cli and an admin user would work, as would a separate realm definition with the scope tailored to your needs and a user having the expected roles.
- The names of module options are snake\_cased versions of the camelCase options used by Keycloak. The Authorization Services paths and payloads have not officially been documented by the Keycloak project. \ `https://www.puppeteers.net/blog/keycloak\-authorization\-services\-rest\-api\-paths\-and\-payload/ `__.
.. Aliases
.. Requirements
.. Options
Parameters
----------
.. raw:: html
Parameter |
Comments |
|
OpenID Connect client_id to authenticate to the API with.
Default: "admin-cli"
|
auth_client_secret
string
|
Client Secret to use in conjunction with auth_client_id (if required).
|
auth_keycloak_url
aliases: url
string
/ required
|
URL to the Keycloak instance.
|
auth_password
aliases: password
string
|
Password to authenticate for API access with.
|
|
Keycloak realm name to authenticate to for API access.
|
auth_username
aliases: username
string
|
Username to authenticate for API access with.
|
client_id
string
/ required
|
The clientId of the keycloak client that should have the authorization scope.
This is usually a human-readable name of the Keycloak client.
|
connection_timeout
integer
|
Controls the HTTP connections timeout period (in seconds) to Keycloak API.
Default: 10
|
|
The decision strategy to use with this permission.
Choices:
"UNANIMOUS" ← (default)
"AFFIRMATIVE"
"CONSENSUS"
|
|
The description of the authorization permission.
|
|
Configures the HTTP User-Agent header.
Default: "Ansible"
|
|
Name of the authorization permission to create.
|
permission_type
string
/ required
|
The type of authorization permission.
On scope create a scope-based permission.
On resource create a resource-based permission.
Choices:
|
policies
list
/ elements=string
|
Policy names to attach to this permission.
Default: []
|
|
The name of the Keycloak realm the Keycloak client is in.
|
|
Authentication refresh token for Keycloak API.
|
resources
list
/ elements=string
|
Resource names to attach to this permission.
Scope-based permissions can only include one resource.
Resource-based permissions can include multiple resources.
Default: []
|
scopes
list
/ elements=string
|
Scope names to attach to this permission.
Resource-based permissions cannot have scopes attached to them.
Default: []
|
|
State of the authorization permission.
On present, the authorization permission is created (or updated if it exists already).
On absent, the authorization permission is removed if it exists.
Choices:
"present" ← (default)
"absent"
|
|
Authentication token for Keycloak API.
|
|
Verify TLS certificates (do not disable this in production).
Choices:
|
.. Attributes
Attributes
----------
.. tabularcolumns:: \X{2}{10}\X{3}{10}\X{5}{10}
.. list-table::
:width: 100%
:widths: auto
:header-rows: 1
:class: longtable ansible-option-table
* - Attribute
- Support
- Description
* - .. raw:: html
.. _ansible_collections.middleware_automation.keycloak.keycloak_authz_permission_module__attribute-action_group:
.. rst-class:: ansible-option-title
**action_group**
.. raw:: html
.. raw:: html
- .. raw:: html
:ansible-attribute-support-property:`Action group:` |antsibull-internal-nbsp|:ansible-attribute-support-full:`middleware\_automation.keycloak.keycloak`
:ansible-option-versionadded:`added in middleware\_automation.keycloak 3.0.0`
.. raw:: html
- .. raw:: html
Use :literal:`group/middleware\_automation.keycloak.keycloak` in :literal:`module\_defaults` to set defaults for this module.
.. raw:: html
* - .. raw:: html
.. _ansible_collections.middleware_automation.keycloak.keycloak_authz_permission_module__attribute-check_mode:
.. rst-class:: ansible-option-title
**check_mode**
.. raw:: html
.. raw:: html
- .. raw:: html
:ansible-attribute-support-label:`Support: \ `\ :ansible-attribute-support-full:`full`
.. raw:: html
- .. raw:: html
Can run in :literal:`check\_mode` and return changed status prediction without modifying target.
.. raw:: html
* - .. raw:: html
.. _ansible_collections.middleware_automation.keycloak.keycloak_authz_permission_module__attribute-diff_mode:
.. rst-class:: ansible-option-title
**diff_mode**
.. raw:: html
.. raw:: html
- .. raw:: html
:ansible-attribute-support-label:`Support: \ `\ :ansible-attribute-support-none:`none`
.. raw:: html
- .. raw:: html
Will return details on what has changed (or possibly needs changing in :literal:`check\_mode`\ ), when in diff mode.
.. raw:: html
.. Notes
.. Seealso
.. Examples
Examples
--------
.. code-block:: yaml+jinja
- name: Manage scope-based Keycloak authorization permission
middleware_automation.keycloak.keycloak_authz_permission:
name: ScopePermission
state: present
description: Scope permission
permission_type: scope
scopes:
- file:delete
policies:
- Default Policy
client_id: myclient
realm: myrealm
auth_keycloak_url: http://localhost:8080
auth_username: keycloak
auth_password: keycloak
auth_realm: master
- name: Manage resource-based Keycloak authorization permission
middleware_automation.keycloak.keycloak_authz_permission:
name: ResourcePermission
state: present
description: Resource permission
permission_type: resource
resources:
- Default Resource
policies:
- Default Policy
client_id: myclient
realm: myrealm
auth_keycloak_url: http://localhost:8080
auth_username: keycloak
auth_password: keycloak
auth_realm: master
.. Facts
.. Return values
Return Values
-------------
Common return values are documented :ref:`here `, the following are the fields unique to this module:
.. raw:: html
Key |
Description |
|
Representation of the authorization permission after module execution.
Returned: on success
|
|
The decision strategy to use.
Returned: when state=present
Sample: "UNANIMOUS"
|
|
Description of the authorization permission.
Returned: when state=present
Sample: "Resource Permission"
|
|
ID of the authorization permission.
Returned: when state=present
Sample: "9da05cd2-b273-4354-bbd8-0c133918a454"
|
|
The logic used for the permission (part of the payload, but has a fixed value).
Returned: when state=present
Sample: "POSITIVE"
|
|
Name of the authorization permission.
Returned: when state=present
Sample: "ResourcePermission"
|
policies
list
/ elements=string
|
IDs of policies attached to this permission.
Returned: when state=present
Sample: ["9da05cd2-b273-4354-bbd8-0c133918a454"]
|
resources
list
/ elements=string
|
IDs of resources attached to this permission.
Returned: when state=present
Sample: ["49e052ff-100d-4b79-a9dd-52669ed3c11d"]
|
scopes
list
/ elements=string
|
IDs of scopes attached to this permission.
Returned: when state=present
Sample: ["9da05cd2-b273-4354-bbd8-0c133918a454"]
|
|
Type of the authorization permission.
Returned: when state=present
Sample: "resource"
|
|
Message as to what action was taken.
Returned: always
|
.. Status (Presently only deprecated)
.. Authors
Authors
~~~~~~~
- Samuli Seppänen (@mattock)
.. Extra links
.. Parsing errors