Self promotion for openssl_privatekey (#88)

* Self promotion for ansible modules

ACME private keys can be created with openssl_privatekey module

* Fix module link. Rewrite to push module forward
pull/95/head
Olivier Clavel 2020-07-17 14:44:28 +02:00 committed by GitHub
parent a19756ee77
commit 2511932158
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -31,8 +31,12 @@ options:
description: description:
- "Path to a file containing the ACME account RSA or Elliptic Curve - "Path to a file containing the ACME account RSA or Elliptic Curve
key." key."
- "RSA keys can be created with C(openssl genrsa ...). Elliptic curve keys can - "Private keys can be created with the
be created with C(openssl ecparam -genkey ...). Any other tool creating M(community.crypto.openssl_privatekey) module. If the requisites
(pyOpenSSL or cryptography) are not available, keys can also be
created directly with the C(openssl) command line tool: RSA keys
can be created with C(openssl genrsa ...). Elliptic curve keys can be
created with C(openssl ecparam -genkey ...). Any other tool creating
private keys in PEM format can be used as well." private keys in PEM format can be used as well."
- "Mutually exclusive with C(account_key_content)." - "Mutually exclusive with C(account_key_content)."
- "Required if C(account_key_content) is not used." - "Required if C(account_key_content) is not used."