Fix boolean default. (#146)
parent
942255923b
commit
94b23d62db
|
@ -108,6 +108,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Should the subjectAltName extension be considered as critical.
|
- Should the subjectAltName extension be considered as critical.
|
||||||
type: bool
|
type: bool
|
||||||
|
default: false
|
||||||
aliases: [ subjectAltName_critical ]
|
aliases: [ subjectAltName_critical ]
|
||||||
use_common_name_for_san:
|
use_common_name_for_san:
|
||||||
description:
|
description:
|
||||||
|
@ -127,6 +128,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Should the keyUsage extension be considered as critical.
|
- Should the keyUsage extension be considered as critical.
|
||||||
type: bool
|
type: bool
|
||||||
|
default: false
|
||||||
aliases: [ keyUsage_critical ]
|
aliases: [ keyUsage_critical ]
|
||||||
extended_key_usage:
|
extended_key_usage:
|
||||||
description:
|
description:
|
||||||
|
@ -139,6 +141,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Should the extkeyUsage extension be considered as critical.
|
- Should the extkeyUsage extension be considered as critical.
|
||||||
type: bool
|
type: bool
|
||||||
|
default: false
|
||||||
aliases: [ extKeyUsage_critical, extendedKeyUsage_critical ]
|
aliases: [ extKeyUsage_critical, extendedKeyUsage_critical ]
|
||||||
basic_constraints:
|
basic_constraints:
|
||||||
description:
|
description:
|
||||||
|
@ -150,12 +153,14 @@ options:
|
||||||
description:
|
description:
|
||||||
- Should the basicConstraints extension be considered as critical.
|
- Should the basicConstraints extension be considered as critical.
|
||||||
type: bool
|
type: bool
|
||||||
|
default: false
|
||||||
aliases: [ basicConstraints_critical ]
|
aliases: [ basicConstraints_critical ]
|
||||||
ocsp_must_staple:
|
ocsp_must_staple:
|
||||||
description:
|
description:
|
||||||
- Indicates that the certificate should contain the OCSP Must Staple
|
- Indicates that the certificate should contain the OCSP Must Staple
|
||||||
extension (U(https://tools.ietf.org/html/rfc7633)).
|
extension (U(https://tools.ietf.org/html/rfc7633)).
|
||||||
type: bool
|
type: bool
|
||||||
|
default: false
|
||||||
aliases: [ ocspMustStaple ]
|
aliases: [ ocspMustStaple ]
|
||||||
ocsp_must_staple_critical:
|
ocsp_must_staple_critical:
|
||||||
description:
|
description:
|
||||||
|
@ -165,6 +170,7 @@ options:
|
||||||
are required to reject such certificates
|
are required to reject such certificates
|
||||||
(see U(https://tools.ietf.org/html/rfc7633#section-4)).
|
(see U(https://tools.ietf.org/html/rfc7633#section-4)).
|
||||||
type: bool
|
type: bool
|
||||||
|
default: false
|
||||||
aliases: [ ocspMustStaple_critical ]
|
aliases: [ ocspMustStaple_critical ]
|
||||||
name_constraints_permitted:
|
name_constraints_permitted:
|
||||||
description:
|
description:
|
||||||
|
@ -186,6 +192,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- Should the Name Constraints extension be considered as critical.
|
- Should the Name Constraints extension be considered as critical.
|
||||||
type: bool
|
type: bool
|
||||||
|
default: false
|
||||||
select_crypto_backend:
|
select_crypto_backend:
|
||||||
description:
|
description:
|
||||||
- Determines which crypto backend to use.
|
- Determines which crypto backend to use.
|
||||||
|
|
Loading…
Reference in New Issue