1
0
Fork 0
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:
Andrew Klychkov 2020-05-05 15:09:33 +03:00 committed by GitHub
parent 6c1c1604fb
commit 2bc89b56e8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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') }}"