Merge "Add support to configure token caching"

This commit is contained in:
Zuul 2019-10-08 17:33:17 +00:00 committed by Gerrit Code Review
commit 9150667ee0
2 changed files with 11 additions and 0 deletions

View File

@ -300,6 +300,11 @@ parameters:
default: ''
description: >-
OAuth 2.0 introspection endpoint for mod_auth_openidc
KeystoneEnableTokenCaching:
type: boolean
default: false
description: >-
Enable token caching
resources:
@ -388,6 +393,7 @@ outputs:
content: {get_param: KeystoneCredential1}
keystone::fernet_keys: {get_param: KeystoneFernetKeys}
keystone::fernet_replace_keys: {get_param: ManageKeystoneFernetKeys}
tripleo::profile::base::keystone::enable_token_caching: {get_param: KeystoneEnableTokenCaching}
keystone::logging::debug:
if:
- service_debug_unset

View File

@ -0,0 +1,5 @@
---
features:
- |
A new parameter, KeystoneEnabledTokenCaching is available to enable token
caching in keystone, which is disabled by default.