MySQL TLS support

Add ability to use tls for database connections.

PROD-15652

Change-Id: I3b57390143e964ccc8d2688c562cadee5f234354
diff --git a/README.rst b/README.rst
index cd6b88a..dd2b3d1 100644
--- a/README.rst
+++ b/README.rst
@@ -159,7 +159,14 @@
 Configuring TLS communications
 ------------------------------
 
-**RabbitMQ**
+In order to trust remote server's certificate during establishing tls
+connection the CA cert must be provided at client side. By default
+system wide installed CA certs are used. You can change this behavior
+by specifying cacert_file and cacert params (optional).
+See examples below:
+
+
+- **RabbitMQ**
 
 .. code-block:: yaml
 
@@ -173,6 +180,18 @@
           cacert_file: /etc/openstack/rabbitmq-ca.pem
 
 
+- **MySQL**
+
+.. code-block:: yaml
+
+ barbican:
+   server:
+      database:
+        ssl:
+          enabled: True
+          cacert: cert body if the cacert_file does not exists
+          cacert_file: /etc/openstack/mysql-ca.pem
+
 
 Configuring plugins
 -------------------