From 2511932158efe002845816860c434435f99b43d6 Mon Sep 17 00:00:00 2001 From: Olivier Clavel Date: Fri, 17 Jul 2020 14:44:28 +0200 Subject: [PATCH] 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 --- plugins/doc_fragments/acme.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/plugins/doc_fragments/acme.py b/plugins/doc_fragments/acme.py index 7e3187f7..6e4eaf33 100644 --- a/plugins/doc_fragments/acme.py +++ b/plugins/doc_fragments/acme.py @@ -31,8 +31,12 @@ options: description: - "Path to a file containing the ACME account RSA or Elliptic Curve key." - - "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 can be created with the + 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." - "Mutually exclusive with C(account_key_content)." - "Required if C(account_key_content) is not used."