mirror of
https://github.com/ansible-collections/google.cloud.git
synced 2025-07-28 15:41:32 -07:00
remove client side validation on enums (#256)
Signed-off-by: Modular Magician <magic-modules@google.com>
This commit is contained in:
parent
cae62bd7c4
commit
b1795cda83
30 changed files with 76 additions and 91 deletions
|
@ -175,8 +175,8 @@ def main():
|
|||
module = GcpModule(
|
||||
argument_spec=dict(
|
||||
state=dict(default='present', choices=['present', 'absent'], type='str'),
|
||||
private_key_type=dict(type='str', choices=['TYPE_UNSPECIFIED', 'TYPE_PKCS12_FILE', 'TYPE_GOOGLE_CREDENTIALS_FILE']),
|
||||
key_algorithm=dict(type='str', choices=['KEY_ALG_UNSPECIFIED', 'KEY_ALG_RSA_1024', 'KEY_ALG_RSA_2048']),
|
||||
private_key_type=dict(type='str'),
|
||||
key_algorithm=dict(type='str'),
|
||||
service_account=dict(type='dict'),
|
||||
path=dict(type='path'),
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue