From 12e0873c985b230cbe2dc7d825a9b3668a394ecb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Samuli=20Sepp=C3=A4nen?= Date: Thu, 19 Feb 2026 15:05:38 +0200 Subject: [PATCH] keycloak_userprofile: support attributes.defaultValue MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Samuli Seppänen --- plugins/modules/keycloak_userprofile.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/plugins/modules/keycloak_userprofile.py b/plugins/modules/keycloak_userprofile.py index 669338b090..8155753b60 100644 --- a/plugins/modules/keycloak_userprofile.py +++ b/plugins/modules/keycloak_userprofile.py @@ -99,6 +99,14 @@ options: type: str required: true + default_value: + description: + - The default value for the attribute. + aliases: + - defaultValue + type: str + required: false + validations: description: - The validations to be applied to the attribute. @@ -542,6 +550,7 @@ def main(): options={ "name": dict(type="str", required=True), "display_name": dict(type="str", aliases=["displayName"], required=True), + "default_value": dict(type="str", aliases=["defaultValue"]), "validations": dict( type="dict", options={