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 = '''
|
||||
# Create a key store for the given certificate (inline)
|
||||
- java_keystore:
|
||||
- name: Create a key store for the given certificate (inline)
|
||||
java_keystore:
|
||||
name: example
|
||||
certificate: |
|
||||
-----BEGIN CERTIFICATE-----
|
||||
|
@ -79,8 +79,8 @@ EXAMPLES = '''
|
|||
password: changeit
|
||||
dest: /etc/security/keystore.jks
|
||||
|
||||
# Create a key store for the given certificate (lookup)
|
||||
- java_keystore:
|
||||
- name: Create a key store for the given certificate (lookup)
|
||||
java_keystore:
|
||||
name: example
|
||||
certificate: "{{lookup('file', '/path/to/certificate.crt') }}"
|
||||
private_key: "{{lookup('file', '/path/to/private.key') }}"
|
||||
|
|
Loading…
Reference in a new issue