From 0b1cca56f78c46b305e63680debf1b663c3fecf8 Mon Sep 17 00:00:00 2001 From: Yanis Guenane Date: Wed, 19 Jul 2017 11:17:45 +0200 Subject: [PATCH] openssl_csr: Fix typo in the documentation (#27028) Documentation state 'organizationUnitName' when the actual name of the param is 'organizationalUnitName' --- lib/ansible/modules/crypto/openssl_csr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ansible/modules/crypto/openssl_csr.py b/lib/ansible/modules/crypto/openssl_csr.py index 71309ee2caf..b6bb34b852e 100644 --- a/lib/ansible/modules/crypto/openssl_csr.py +++ b/lib/ansible/modules/crypto/openssl_csr.py @@ -89,11 +89,11 @@ options: aliases: [ 'O' ] description: - organizationName field of the certificate signing request subject - organizationUnitName: + organizationalUnitName: required: false aliases: [ 'OU' ] description: - - organizationUnitName field of the certificate signing request subject + - organizationalUnitName field of the certificate signing request subject commonName: required: false aliases: [ 'CN' ]