Skip to content

Commit

Permalink
Fixes #140 include sha512 data_integrity option for cp_mgmt_vpn_commu…
Browse files Browse the repository at this point in the history
…nity_star (#141)

Ensure sha512 data integrity option is allowed for ike phase 1 and 2 when using
custom encryption_suite
  • Loading branch information
stephenmuss authored Aug 22, 2024
1 parent 67b2370 commit 723fc14
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/cp_mgmt_vpn_community_star.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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",
Expand All @@ -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",
Expand Down

0 comments on commit 723fc14

Please sign in to comment.