From a5001c455e8fe7325b32517eefe214ef7e15e43f Mon Sep 17 00:00:00 2001 From: Fred-sun Date: Fri, 22 Mar 2024 15:45:19 +0800 Subject: [PATCH] Modify 'additional_properties' type to 'list' --- plugins/modules/azure_rm_adapplication.py | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/plugins/modules/azure_rm_adapplication.py b/plugins/modules/azure_rm_adapplication.py index 7e7ce98fe..4e7fd58ad 100644 --- a/plugins/modules/azure_rm_adapplication.py +++ b/plugins/modules/azure_rm_adapplication.py @@ -176,7 +176,8 @@ description: - Additional properties of the claim. - If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - type: str + type: list + elements: str id_token_claims: description: - The optional claims returned in the JWT ID token @@ -205,7 +206,8 @@ description: - Additional properties of the claim. - If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - type: str + type: list + elements: str saml2_token_claims: description: - The optional claims returned in the SAML token @@ -234,7 +236,8 @@ description: - Additional properties of the claim. - If a property exists in this collection, it modifies the behavior of the optional claim specified in the name property. - type: str + type: list + elements: str password: description: - App password, aka 'client secret'. @@ -514,7 +517,8 @@ default=False ), additional_properties=dict( - type='str' + type='list', + elements='str' ) )