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

* Warn user to send a password if the privatekey is password protected

* Edit openssl_cert doc change

* remove trailing whitespace

* update openssl_csr doc to warn user of private key passphrase requirement.

* Update lib/ansible/modules/crypto/openssl_csr.py

Co-Authored-By: johnwesley <johnwesley@users.noreply.github.com>

* grammer correction, privatekey => private key
pull/53514/head
John Wesley 6 years ago committed by John R Barker
parent b45b599433
commit 853f65059a

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

@ -40,12 +40,13 @@ options:
default: sha256
privatekey_path:
description:
- The 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.
type: path
required: true
privatekey_passphrase:
description:
- The passphrase for the privatekey.
- The passphrase for the private key.
- This is required if the private key is password protected.
type: str
version:
description:

@ -56,7 +56,7 @@ options:
required: true
privatekey_passphrase:
description:
- The passphrase for the privatekey.
- The passphrase for the private key.
type: str
version_added: "2.4"
extends_documentation_fragment:

Loading…
Cancel
Save