From 4259a2cbe7479eaa21208f04e04e2ec664b9ad23 Mon Sep 17 00:00:00 2001
From: Michael Friedrich <michael.friedrich@icinga.com>
Date: Thu, 28 Sep 2017 11:56:50 +0200
Subject: [PATCH] Add documentation for MySQL SSL options as database resource

fixes #2975
---
 doc/04-Resources.md | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/doc/04-Resources.md b/doc/04-Resources.md
index 14da903ee..dc2e848e6 100644
--- a/doc/04-Resources.md
+++ b/doc/04-Resources.md
@@ -33,6 +33,12 @@ username                 | **Required.** The database username.
 password                 | **Required.** The database password.
 dbname                   | **Required.** The database name.
 charset                  | **Optional.** The character set for the database connection.
+ssl\_cert                | **Optional.** The file path to the SSL certificate. Only available for the `mysql` database.
+ssl\_key                 | **Optional.** The file path to the SSL key. Only available for the `mysql` database.
+ssl\_ca                  | **Optional.** The file path to the SSL certificate authority. Only available for the `mysql` database.
+ssl\_capath              | **Optional.** The file path to the directory that contains the trusted SSL CA certificates, which are stored in PEM format.Only available for the `mysql` database.
+ssl\_cipher              | **Optional.** A list of one or more permissible ciphers to use for SSL encryption, in a format understood by OpenSSL. For example: `DHE-RSA-AES256-SHA:AES128-SHA`. Only available for the `mysql` database.
+
 
 #### Example <a id="resources-configuration-database-example"></a>