Warn user to send a password if the privatekey is password protected (#53360) (#53527)

* Warn user to send a password if the privatekey is password protected on openssl_cert and openssl_csr docs 

Co-Authored-By: johnwesley <johnwesley@users.noreply.github.com>
This commit is contained in:
Felix Fontein 2019-03-11 19:50:13 +01:00 committed by Alicia Cozine
parent 96aa6babc1
commit 63b2794607
3 changed files with 5 additions and 3 deletions

View file

@ -72,6 +72,7 @@ options:
privatekey_passphrase:
description:
- The passphrase for the I(privatekey_path).
- This is required if the private key is password protected.
selfsigned_version:
default: 3

View file

@ -41,11 +41,12 @@ options:
privatekey_path:
required: true
description:
- Path to the privatekey to use when signing the certificate signing request
- The path to the private key to use when signing the certificate signing request.
privatekey_passphrase:
required: false
description:
- The passphrase for the privatekey.
- The passphrase for the private key.
- This is required if the private key is password protected.
version:
required: false
default: 1

View file

@ -56,7 +56,7 @@ options:
privatekey_passphrase:
required: false
description:
- The passphrase for the privatekey.
- The passphrase for the private key.
version_added: "2.4"
extends_documentation_fragment: files
'''