Add config option enable_webhooks_auth

Partially Implements: blueprint event-driven-optimization-based

Change-Id: I6cdfc18661b279f0d7200f39212ecdb31e500723
This commit is contained in:
licanwei
2020-02-14 16:03:45 +08:00
parent 2591b03625
commit 4255d5b28f
3 changed files with 45 additions and 4 deletions

View File

@@ -55,6 +55,11 @@ API_SERVICE_OPTS = [
"the service, this option should be False; note, you "
"will want to change public API endpoint to represent "
"SSL termination URL with 'public_endpoint' option."),
cfg.BoolOpt('enable_webhooks_auth',
default=True,
help='This option enables or disables webhook request '
'authentication via keystone. Default value is True.'),
]