diff --git a/.github/BOTMETA.yml b/.github/BOTMETA.yml index 565ab4f1f4..19025f6f45 100644 --- a/.github/BOTMETA.yml +++ b/.github/BOTMETA.yml @@ -887,7 +887,7 @@ files: maintainers: danekja $modules/keycloak_realm_rolemapping.py: maintainers: agross mhuysamen Gaetan2907 - $modules/keycloak_realm_users.py: + $modules/keycloak_realm_users_info.py: maintainers: felix-grzelka $modules/keycloak_role.py: maintainers: laurpaum diff --git a/meta/runtime.yml b/meta/runtime.yml index 9072fff6e0..6bc6896c82 100644 --- a/meta/runtime.yml +++ b/meta/runtime.yml @@ -44,7 +44,7 @@ action_groups: - keycloak_realm_keys_metadata_info - keycloak_realm_localization - keycloak_realm_rolemapping - - keycloak_realm_users + - keycloak_realm_users_info - keycloak_role - keycloak_user - keycloak_user_federation diff --git a/plugins/modules/keycloak_realm_users.py b/plugins/modules/keycloak_realm_users_info.py similarity index 96% rename from plugins/modules/keycloak_realm_users.py rename to plugins/modules/keycloak_realm_users_info.py index 7f26e413e8..0600229f83 100644 --- a/plugins/modules/keycloak_realm_users.py +++ b/plugins/modules/keycloak_realm_users_info.py @@ -7,7 +7,7 @@ from __future__ import annotations DOCUMENTATION = r""" -module: keycloak_realm_users +module: keycloak_realm_users_info short_description: Retrieve users from a Keycloak realm using the Keycloak API @@ -44,7 +44,7 @@ author: EXAMPLES = r""" - name: List all users in the "MyCustomRealm" realm using username/password authentication - community.general.keycloak_realm_users: + community.general.keycloak_realm_users_info: realm: MyCustomRealm auth_client_id: admin-cli auth_keycloak_url: https://auth.example.com/auth @@ -54,7 +54,7 @@ EXAMPLES = r""" delegate_to: localhost - name: List all users in the "MyCustomRealm" realm using a token - community.general.keycloak_realm_users: + community.general.keycloak_realm_users_info: realm: MyCustomRealm auth_client_id: admin-cli auth_keycloak_url: https://auth.example.com/auth