summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/crypto/openssl_csr.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/crypto/openssl_csr.py')
-rw-r--r--lib/ansible/modules/crypto/openssl_csr.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/ansible/modules/crypto/openssl_csr.py b/lib/ansible/modules/crypto/openssl_csr.py
index d69eaffd1f..70366bfecb 100644
--- a/lib/ansible/modules/crypto/openssl_csr.py
+++ b/lib/ansible/modules/crypto/openssl_csr.py
@@ -68,7 +68,7 @@ options:
subjectAltName:
required: false
description:
- - SAN extention to attach to the certificate signing request
+ - SAN extension to attach to the certificate signing request
countryName:
required: false
aliases: [ 'C' ]
@@ -114,7 +114,7 @@ EXAMPLES = '''
privatekey_path: /etc/ssl/private/ansible.com.pem
commonName: www.ansible.com
-# Generate an OpenSSL Certificate Signing Request with Subject informations
+# Generate an OpenSSL Certificate Signing Request with Subject information
- openssl_csr:
path: /etc/ssl/csr/www.ansible.com.csr
privatekey_path: /etc/ssl/private/ansible.com.pem
@@ -253,7 +253,7 @@ class CertificateSigningRequest(object):
self.changed = False
def dump(self):
- '''Serialize the object into a dictionnary.'''
+ '''Serialize the object into a dictionary.'''
result = {
'csr': self.path,