mirror of
https://github.com/pomerium/pomerium.git
synced 2025-08-02 00:10:45 +02:00
authorize: audit logging (#2050)
* authorize: add databroker server and record version to result, force sync via polling * authorize: audit logging
This commit is contained in:
parent
00e56212ec
commit
f4c4fe314a
18 changed files with 1395 additions and 1390 deletions
|
@ -27,11 +27,14 @@ _protos=(
|
|||
"envoy/config/endpoint/v3/endpoint_components.proto"
|
||||
"envoy/config/endpoint/v3/endpoint.proto"
|
||||
"envoy/config/route/v3/route_components.proto"
|
||||
"envoy/service/auth/v3/attribute_context.proto"
|
||||
"envoy/service/auth/v3/external_auth.proto"
|
||||
"envoy/type/matcher/v3/regex.proto"
|
||||
"envoy/type/matcher/v3/string.proto"
|
||||
"envoy/type/metadata/v3/metadata.proto"
|
||||
"envoy/type/tracing/v3/custom_tag.proto"
|
||||
"envoy/type/v3/http.proto"
|
||||
"envoy/type/v3/http_status.proto"
|
||||
"envoy/type/v3/percent.proto"
|
||||
"envoy/type/v3/range.proto"
|
||||
"envoy/type/v3/semantic_version.proto"
|
||||
|
@ -56,10 +59,14 @@ _import_paths=$(join_by , "${_imports[@]}")
|
|||
--go_out="$_import_paths,plugins=grpc,paths=source_relative:./audit/." \
|
||||
./audit/audit.proto
|
||||
|
||||
../../scripts/protoc -I ./config/ \
|
||||
../../scripts/protoc -I "$GOPATH/src" -I ./config/ \
|
||||
--go_out="$_import_paths,plugins=grpc,paths=source_relative:./config/." \
|
||||
./config/config.proto
|
||||
|
||||
../../scripts/protoc -I ./crypt/ \
|
||||
--go_out="$_import_paths,plugins=grpc,paths=source_relative:./crypt/." \
|
||||
./crypt/crypt.proto
|
||||
|
||||
../../scripts/protoc -I ./databroker/ \
|
||||
--go_out="$_import_paths,plugins=grpc,paths=source_relative:./databroker/." \
|
||||
./databroker/databroker.proto
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue