Merge "Minor updates to encryption docs"

This commit is contained in:
Zuul 2017-12-13 02:03:52 +00:00 committed by Gerrit Code Review
commit ac67e669a9
1 changed files with 9 additions and 8 deletions

View File

@ -26,25 +26,26 @@ To configure Murano to use Barbican, place the following configuration into
`murano-engine.conf`:: `murano-engine.conf`::
[key_manager] [key_manager]
auth_type = 'keystone_password' auth_type = keystone_password
auth_url = <keystone_url> auth_url = <keystone_url>
username = <username> username = <username>
password = <password> password = <password>
project_id = <project_id>
user_domain_name = <domain_name> user_domain_name = <domain_name>
Similarly, place the following configuration into `_50_murano.py` to configure Similarly, place the following configuration into `_50_murano.py` to configure
the murano-dashboard end:: the murano-dashboard end::
KEY_MANAGER = { KEY_MANAGER = {
'auth_url': <keystone_url>/v3', 'auth_url': '<keystone_url>/v3',
'username': <username>, 'username': '<username>',
'user_domain_name': <domain_name>, 'user_domain_name': '<domain_name>',
'password': <password>, 'password': '<password>',
'project_name': <project_name>, 'project_name': '<project_name>',
'project_domain_name': <domain_name> 'project_domain_name': '<domain_name>'
} }
.. note:: Horizon config must be valid Python, so the quotes above are important.
Example Example
------- -------
`encryptData(foo)`: Call to encrypt string `foo` in storage. Will return a `encryptData(foo)`: Call to encrypt string `foo` in storage. Will return a