mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-04-10 12:50:27 -07:00
fix: crypto_key initial_version_creation default
skip_initial_version_creation previously defaulted to None, which results in an invalid value in the create call to gcp_kms_crypto_key. Defaulting to False fixes the issue.
This commit is contained in:
parent
0e9f2a74b1
commit
50076e7f36
2 changed files with 1 additions and 2 deletions
|
@ -279,7 +279,7 @@ def main():
|
|||
rotation_period=dict(type='str'),
|
||||
version_template=dict(type='dict', options=dict(algorithm=dict(required=True, type='str'), protection_level=dict(type='str'))),
|
||||
key_ring=dict(required=True, type='str'),
|
||||
skip_initial_version_creation=dict(type='bool'),
|
||||
skip_initial_version_creation=dict(type='bool', default=False),
|
||||
)
|
||||
)
|
||||
|
||||
|
|
|
@ -1,2 +1 @@
|
|||
cloud/gcp
|
||||
unsupported
|
||||
|
|
Loading…
Add table
Reference in a new issue