summaryrefslogtreecommitdiff
path: root/lib/ansible/modules/network/panos/panos_cert_gen_ssh.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/ansible/modules/network/panos/panos_cert_gen_ssh.py')
-rw-r--r--lib/ansible/modules/network/panos/panos_cert_gen_ssh.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/ansible/modules/network/panos/panos_cert_gen_ssh.py b/lib/ansible/modules/network/panos/panos_cert_gen_ssh.py
index 398e81bc82..24ec5b52ca 100644
--- a/lib/ansible/modules/network/panos/panos_cert_gen_ssh.py
+++ b/lib/ansible/modules/network/panos/panos_cert_gen_ssh.py
@@ -55,7 +55,7 @@ options:
default: null
cert_cn:
description:
- - Certificate CN (common name) embeded in the certificate signature.
+ - Certificate CN (common name) embedded in the certificate signature.
required: true
default: null
signed_by:
@@ -126,7 +126,7 @@ def generate_cert(module, ip_address, key_filename, password,
client = paramiko.SSHClient()
# add policy to accept all host keys, I haven't found
- # a way to retreive the instance SSH key fingerprint from AWS
+ # a way to retrieve the instance SSH key fingerprint from AWS
client.set_missing_host_key_policy(paramiko.AutoAddPolicy())
if not key_filename: