1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2026-03-21 20:59:10 +00:00
This commit is contained in:
Samuli Seppänen 2026-03-20 04:08:25 -04:00 committed by GitHub
commit 84780137e9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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={