
This change adds audit filter in paste ini file which can be used to add this filter in existing request processing pipeline. Added new pipeline with audit filter after keystone_authtoken filter. Adding documentation about how to use this. This change provides auditing on REST API side. Worker side changes will be done later in another review and are not dependent on this. Change-Id: I308796f5804aa55bc3d6496ded0504b469f00301 Partially-Implements: blueprint audit-cadf-events
26 lines
674 B
Plaintext
26 lines
674 B
Plaintext
[DEFAULT]
|
|
# default target endpoint type
|
|
# should match the endpoint type defined in service catalog
|
|
target_endpoint_type = key-manager
|
|
|
|
# map urls ending with specific text to a unique action
|
|
# Don't need custom mapping for other resource operations
|
|
# Note: action should match action names defined in CADF taxonomy
|
|
[custom_actions]
|
|
acl/get = read
|
|
|
|
|
|
# path of api requests for CADF target typeURI
|
|
# Just need to include top resource path to identify class of resources
|
|
[path_keywords]
|
|
secrets=
|
|
containers=
|
|
orders=
|
|
cas=None
|
|
quotas=
|
|
project-quotas=
|
|
|
|
|
|
# map endpoint type defined in service catalog to CADF typeURI
|
|
[service_endpoints]
|
|
key-manager = service/security/keymanager |