mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-07-25 06:10:22 -07:00
Adding extends_documenation_fragment in crypto/* (#33253)
All crypto modules uses file common arguments to specify generated file permissions. This commits aims to add the extends_documentation_fragment in the doc so it is automatically stated.
This commit is contained in:
parent
1f9e84fdd4
commit
c800048e93
3 changed files with 5 additions and 5 deletions
|
@ -183,7 +183,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- If set to True, the I(subject_alt_name) extension field must contain only these values.
|
- If set to True, the I(subject_alt_name) extension field must contain only these values.
|
||||||
aliases: [ subjectAltName_strict ]
|
aliases: [ subjectAltName_strict ]
|
||||||
|
extends_documentation_fragment: files
|
||||||
notes:
|
notes:
|
||||||
- All ASN.1 TIME values should be specified following the YYYYMMDDHHMMSSZ pattern.
|
- All ASN.1 TIME values should be specified following the YYYYMMDDHHMMSSZ pattern.
|
||||||
Date specified should be UTC. Minutes and seconds are mandatory.
|
Date specified should be UTC. Minutes and seconds are mandatory.
|
||||||
|
|
|
@ -23,8 +23,7 @@ description:
|
||||||
- "This module allows one to (re)generate OpenSSL certificate signing requests.
|
- "This module allows one to (re)generate OpenSSL certificate signing requests.
|
||||||
It uses the pyOpenSSL python library to interact with openssl. This module supports
|
It uses the pyOpenSSL python library to interact with openssl. This module supports
|
||||||
the subjectAltName as well as the keyUsage and extendedKeyUsage extensions.
|
the subjectAltName as well as the keyUsage and extendedKeyUsage extensions.
|
||||||
Note: At least one of common_name or subject_alt_name must be specified.
|
Note: At least one of common_name or subject_alt_name must be specified."
|
||||||
This module uses file common arguments to specify generated file permissions."
|
|
||||||
requirements:
|
requirements:
|
||||||
- "python-pyOpenSSL >= 0.15"
|
- "python-pyOpenSSL >= 0.15"
|
||||||
options:
|
options:
|
||||||
|
@ -132,6 +131,7 @@ options:
|
||||||
aliases: [ 'extKeyUsage_critical', 'extendedKeyUsage_critical' ]
|
aliases: [ 'extKeyUsage_critical', 'extendedKeyUsage_critical' ]
|
||||||
description:
|
description:
|
||||||
- Should the extkeyUsage extension be considered as critical
|
- Should the extkeyUsage extension be considered as critical
|
||||||
|
extends_documentation_fragment: files
|
||||||
|
|
||||||
notes:
|
notes:
|
||||||
- "If the certificate signing request already exists it will be checked whether subjectAltName,
|
- "If the certificate signing request already exists it will be checked whether subjectAltName,
|
||||||
|
|
|
@ -22,8 +22,7 @@ short_description: Generate an OpenSSL public key from its private key.
|
||||||
description:
|
description:
|
||||||
- "This module allows one to (re)generate OpenSSL public keys from their private keys.
|
- "This module allows one to (re)generate OpenSSL public keys from their private keys.
|
||||||
It uses the pyOpenSSL python library to interact with openssl. Keys are generated
|
It uses the pyOpenSSL python library to interact with openssl. Keys are generated
|
||||||
in PEM format. This module works only if the version of PyOpenSSL is recent enough (> 16.0.0).
|
in PEM format. This module works only if the version of PyOpenSSL is recent enough (> 16.0.0)."
|
||||||
This module uses file common arguments to specify generated file permissions."
|
|
||||||
requirements:
|
requirements:
|
||||||
- "python-pyOpenSSL"
|
- "python-pyOpenSSL"
|
||||||
options:
|
options:
|
||||||
|
@ -59,6 +58,7 @@ options:
|
||||||
description:
|
description:
|
||||||
- The passphrase for the privatekey.
|
- The passphrase for the privatekey.
|
||||||
version_added: "2.4"
|
version_added: "2.4"
|
||||||
|
extends_documentation_fragment: files
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue