diff --git a/plugins/modules/cp_mgmt_vpn_community_star.py b/plugins/modules/cp_mgmt_vpn_community_star.py index a5a1030..df550cc 100644 --- a/plugins/modules/cp_mgmt_vpn_community_star.py +++ b/plugins/modules/cp_mgmt_vpn_community_star.py @@ -153,7 +153,7 @@ description: - The hash algorithm to be used. type: str - choices: ['aes-xcbc', 'sha1', 'sha256', 'sha384', 'md5'] + choices: ['aes-xcbc', 'sha1', 'sha256', 'sha384', 'sha512', 'md5'] diffie_hellman_group: description: - The Diffie-Hellman group to be used. @@ -184,7 +184,7 @@ description: - The hash algorithm to be used. type: str - choices: ['aes-xcbc', 'sha1', 'sha256', 'sha384', 'md5'] + choices: ['aes-xcbc', 'sha1', 'sha256', 'sha384', 'sha512', 'md5'] encryption_algorithm: description: - The encryption algorithm to be used. @@ -400,7 +400,7 @@ def main(): options=dict( data_integrity=dict( type="str", - choices=["aes-xcbc", "sha1", "sha256", "sha384", "md5"], + choices=["aes-xcbc", "sha1", "sha256", "sha384", "sha512", "md5"], ), diffie_hellman_group=dict( type="str", @@ -426,7 +426,7 @@ def main(): options=dict( data_integrity=dict( type="str", - choices=["aes-xcbc", "sha1", "sha256", "sha384", "md5"], + choices=["aes-xcbc", "sha1", "sha256", "sha384", "sha512", "md5"], ), encryption_algorithm=dict( type="str",