mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-03-22 05:09:12 +00:00
keycloak_userprofile: support attributes.defaultValue
Signed-off-by: Samuli Seppänen <samuli.seppanen@puppeteers.net>
This commit is contained in:
parent
34938ca1ef
commit
12e0873c98
1 changed files with 9 additions and 0 deletions
|
|
@ -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={
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue