removed default key_type
parent
f10082b846
commit
84277a87cf
|
@ -36,10 +36,9 @@ options:
|
||||||
choices: [ present, absent ]
|
choices: [ present, absent ]
|
||||||
key_type:
|
key_type:
|
||||||
description:
|
description:
|
||||||
- "Specifies the type of key to create. By default this is V(EDDSSA) which must be used with Curve25519.
|
- "Specifies the type of key to create.
|
||||||
Supported key types are V(RSA), V(DSA), V(ECDSA), V(EDDSA), and V(ECDH)."
|
Supported key types are V(RSA), V(DSA), V(ECDSA), V(EDDSA), and V(ECDH)."
|
||||||
type: str
|
type: str
|
||||||
default: EDDSA
|
|
||||||
choices: ['RSA', 'DSA', 'ECDSA', 'EDDSA', 'ECDH']
|
choices: ['RSA', 'DSA', 'ECDSA', 'EDDSA', 'ECDH']
|
||||||
key_length:
|
key_length:
|
||||||
description:
|
description:
|
||||||
|
@ -367,7 +366,7 @@ def main():
|
||||||
module = AnsibleModule(
|
module = AnsibleModule(
|
||||||
argument_spec=
|
argument_spec=
|
||||||
state=dict(type='str', default='present', choices=['present', 'absent']),
|
state=dict(type='str', default='present', choices=['present', 'absent']),
|
||||||
key_type=dict(type='str', default='EDDSA', choices=key_types[:-1]),
|
key_type=dict(type='str', choices=key_types[:-1]),
|
||||||
key_curve=dict(type='str', choices=key_curves),
|
key_curve=dict(type='str', choices=key_curves),
|
||||||
key_usage=dict(type='str', choices=key_usages),
|
key_usage=dict(type='str', choices=key_usages),
|
||||||
subkey_type=dict(type='str', choices=key_types),
|
subkey_type=dict(type='str', choices=key_types),
|
||||||
|
|
Loading…
Reference in New Issue