Implement barbican memcache security strategy
Provides an option to authenticate and optionally encrtypt the token
data stored in the cache:
memcache_security_strategy = MAC/ENCRTYPT
memcache_secret_key = secret_key
Change-Id: Ia16c8b3d9e3089d9add49e641af0f6668fc7d87f
Related-Prod: PROD-22099
diff --git a/README.rst b/README.rst
index 0f4e655..33e32c7 100644
--- a/README.rst
+++ b/README.rst
@@ -412,6 +412,26 @@
You can read more about it here:
https://docs.openstack.org/security-guide/databases/database-access-control.html
+Barbican server with memcached caching and security strategy:
+
+.. code-block:: yaml
+
+ barbican:
+ server:
+ enabled: true
+ ...
+ cache:
+ engine: memcached
+ members:
+ - host: 127.0.0.1
+ port: 11211
+ - host: 127.0.0.1
+ port: 11211
+ security:
+ enabled: true
+ strategy: ENCRYPT
+ secret_key: secret
+
Documentation and Bugs
======================