From 7241d5543a243d866f5621433909c8bb5b1c3db5 Mon Sep 17 00:00:00 2001 From: Daniel Ziegenberg Date: Fri, 30 May 2025 12:56:16 +0200 Subject: [PATCH] Document supported curves for Elliptic Curve keys on ACME Accounts (#904) Signed-off-by: Daniel Ziegenberg --- plugins/doc_fragments/_acme.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugins/doc_fragments/_acme.py b/plugins/doc_fragments/_acme.py index ee44ad34..73e2714e 100644 --- a/plugins/doc_fragments/_acme.py +++ b/plugins/doc_fragments/_acme.py @@ -82,6 +82,7 @@ options: account_key_src: description: - Path to a file containing the ACME account RSA or Elliptic Curve key. + - "For Elliptic Curve keys only the following curves are supported: V(secp256r1), V(secp384r1), and V(secp521r1)." - 'Private keys can be created with the M(community.crypto.openssl_privatekey) or M(community.crypto.openssl_privatekey_pipe) modules. If the requisite (cryptography) is 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 @@ -94,6 +95,7 @@ options: account_key_content: description: - Content of the ACME account RSA or Elliptic Curve key. + - "For Elliptic Curve keys only the following curves are supported: V(secp256r1), V(secp384r1), and V(secp521r1)." - Mutually exclusive with O(account_key_src). - Required if O(account_key_src) is not used. - B(Warning:) the content will be written into a temporary file, which will be deleted by Ansible when the module completes.