openssl_privatekey: fix example for cipher (#527)
the cipher parameter required for encrypted private keys only accepts the value "auto" as described in /plugins/doc_fragments/module_privatekey.py. The previously documented value of "aes256" is invalid here.pull/530/head
parent
a050250153
commit
37fddc61d8
|
@ -85,7 +85,7 @@ EXAMPLES = r'''
|
||||||
community.crypto.openssl_privatekey:
|
community.crypto.openssl_privatekey:
|
||||||
path: /etc/ssl/private/ansible.com.pem
|
path: /etc/ssl/private/ansible.com.pem
|
||||||
passphrase: ansible
|
passphrase: ansible
|
||||||
cipher: aes256
|
cipher: auto
|
||||||
|
|
||||||
- name: Generate an OpenSSL private key with a different size (2048 bits)
|
- name: Generate an OpenSSL private key with a different size (2048 bits)
|
||||||
community.crypto.openssl_privatekey:
|
community.crypto.openssl_privatekey:
|
||||||
|
|
Loading…
Reference in New Issue