Fix incorrect config in usage doc

utils.credential_factory uses 'key_manager' as it's config group rather
than the documented 'castellan'.

Change-Id: Ie2f37fb0ee84cfef9fd1d39f7be5b601c9a86786
This commit is contained in:
Paul Bourke 2017-06-02 13:09:55 +01:00
parent 8b57f5877e
commit 22514018ad
1 changed files with 4 additions and 4 deletions

View File

@ -25,24 +25,24 @@ provided.
# token credential
# token variable not required, token can be obtained from context
[castellan]
[key_manager]
auth_type = 'token'
token = '5b4de0bb77064f289f7cc58e33bea8c7'
# password credential
[castellan]
[key_manager]
auth_type = 'password'
username = 'admin'
password = 'passw0rd1'
# keystone token credential
[castellan]
[key_manager]
auth_type = 'keystone_token'
token = '5b4de0bb77064f289f7cc58e33bea8c7'
project_id = 'a1e19934af81420d980a5d02b4afe9fb'
# keystone password credential
[castellan]
[key_manager]
auth_type = 'keystone_password'
username = 'admin'
password = 'passw0rd1'