jugasit.keycloak.user_info (1.1.0) — module

Query information of Keycloak users via Keycloak API

| "added in version" 1.0.0 of jugasit.keycloak"

Authors: Christoffer Reijer (@ephracis)

Install collection

Install with ansible-galaxy collection install jugasit.keycloak:==1.1.0


Add to requirements.yml

  collections:
    - name: jugasit.keycloak
      version: 1.1.0

Description

This module allows you to query information about Keycloak users via the Keycloak REST API. It requires access to the REST API via OpenID Connect; the user connecting and the client 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 client 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 ones found in the Keycloak API and its documentation at U(https://www.keycloak.org/docs-api/8.0/rest-api/index.html).

Attributes are multi-valued in the Keycloak API. All attributes are lists of individual values and will be returned that way by this module. You may pass single values for attributes when calling the module, and this will be translated into a list suitable for the API.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Get a Keycloak user
  jugasit.keycloak.user_info:
    name: MyCustomUser
    auth_client_id: admin-cli
    auth_keycloak_url: https://auth.example.com/auth
    auth_realm: master
    auth_username: USERNAME
    auth_password: PASSWORD
  delegate_to: localhost

Inputs

    
realm:
    default: master
    description:
    - Realm of the user.
    type: str

token:
    description:
    - Authentication token for Keycloak API.
    type: str
    version_added: 1.0.0
    version_added_collection: jugasit.keycloak

username:
    description:
    - Username of the user.
    required: true
    type: str

auth_realm:
    default: master
    description:
    - Keycloak realm name to authenticate to for API access.
    type: str

http_agent:
    default: Ansible
    description:
    - Configures the HTTP User-Agent header.
    type: str
    version_added: 1.0.0
    version_added_collection: jugasit.keycloak

auth_password:
    description:
    - Password to authenticate for API access with.
    - If the value is not specified in the task, the value of environment variable C(KEYCLOAK_PASSWORD)
      or C(SSO_PASSWORD) will be used instead.
    type: str

auth_username:
    description:
    - Username to authenticate for API access with.
    - If the value is not specified in the task, the value of environment variable C(KEYCLOAK_USERNAME)
      or C(SSO_USERNAME) will be used instead.
    type: str

auth_client_id:
    default: admin-cli
    description:
    - OpenID Connect I(client_id) to authenticate to the API with.
    type: str

validate_certs:
    default: true
    description:
    - Verify TLS certificates (do not disable this in production).
    type: bool

auth_keycloak_url:
    aliases:
    - url
    description:
    - URL to the Keycloak instance.
    - If the value is not specified in the task, the value of environment variable C(KEYCLOAK_URL)
      or C(SSO_URL) will be used instead.
    required: false
    type: str

auth_client_secret:
    description:
    - Client Secret to use in conjunction with I(auth_client_id) (if required).
    type: str

connection_timeout:
    default: 10
    description:
    - Controls the HTTP connections timeout period (in seconds) to Keycloak API.
    type: int
    version_added: 1.0.0
    version_added_collection: jugasit.keycloak

Outputs

msg:
  description: Message as to what action was taken.
  returned: always
  type: str
user_info:
  contains:
    createdTimestamp:
      description: Timestamp when the user was created.
      returned: always
      sample: 1683728585110
      type: str
    disableableCredentialTypes:
      description: List of disabled credential types.
      returned: always
      sample: []
      type: str
    email:
      description: Email for the user.
      returned: always
      sample: test1@example.com
      type: str
    emailVerified:
      description: Whether or not the email for the user has been verified.
      returned: always
      sample: true
      type: bool
    enabled:
      description: Whether or not the user is enabled.
      returned: always
      sample: true
      type: bool
    firstName:
      description: First name of the user.
      returned: always
      sample: Alice
      type: str
    groups:
      description: List of groups the user is a member of.
      returned: always
      sample:
      - name: group1
      type: list
    lastName:
      description: Last name of the user.
      returned: always
      sample: Userson
      type: str
    username:
      description: Username of the user.
      returned: always
      sample: test1
      type: str
  description:
  - Representation of the user information.
  returned: always
  type: dict