From d63c195bffbba8b6b0f08538d3de0400d3dfd430 Mon Sep 17 00:00:00 2001 From: Felix Fontein Date: Sat, 7 Oct 2023 15:21:09 +0200 Subject: [PATCH] Emphasize that openssl_publickey doesn't support OpenSSH private keys. (#663) --- plugins/modules/openssl_publickey.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/modules/openssl_publickey.py b/plugins/modules/openssl_publickey.py index 01fde5c7b..98eca22ac 100644 --- a/plugins/modules/openssl_publickey.py +++ b/plugins/modules/openssl_publickey.py @@ -16,7 +16,7 @@ description: - This module allows one to (re)generate public keys from their private keys. - Public keys are generated in PEM or OpenSSH format. Private keys must be OpenSSL PEM keys. - OpenSSH private keys are not supported, use the M(community.crypto.openssh_keypair) module to manage these. + B(OpenSSH private keys are not supported), use the M(community.crypto.openssh_keypair) module to manage these. - The module uses the cryptography Python library. requirements: - cryptography >= 1.2.3 (older versions might work as well)