mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
java_keystore: fix doc format (#281)
This commit is contained in:
parent
6c1c1604fb
commit
2bc89b56e8
1 changed files with 4 additions and 4 deletions
|
@ -63,8 +63,8 @@ author: Guillaume Grossetie (@Mogztter)
|
||||||
'''
|
'''
|
||||||
|
|
||||||
EXAMPLES = '''
|
EXAMPLES = '''
|
||||||
# Create a key store for the given certificate (inline)
|
- name: Create a key store for the given certificate (inline)
|
||||||
- java_keystore:
|
java_keystore:
|
||||||
name: example
|
name: example
|
||||||
certificate: |
|
certificate: |
|
||||||
-----BEGIN CERTIFICATE-----
|
-----BEGIN CERTIFICATE-----
|
||||||
|
@ -79,8 +79,8 @@ EXAMPLES = '''
|
||||||
password: changeit
|
password: changeit
|
||||||
dest: /etc/security/keystore.jks
|
dest: /etc/security/keystore.jks
|
||||||
|
|
||||||
# Create a key store for the given certificate (lookup)
|
- name: Create a key store for the given certificate (lookup)
|
||||||
- java_keystore:
|
java_keystore:
|
||||||
name: example
|
name: example
|
||||||
certificate: "{{lookup('file', '/path/to/certificate.crt') }}"
|
certificate: "{{lookup('file', '/path/to/certificate.crt') }}"
|
||||||
private_key: "{{lookup('file', '/path/to/private.key') }}"
|
private_key: "{{lookup('file', '/path/to/private.key') }}"
|
||||||
|
|
Loading…
Reference in a new issue