Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noahingh/simple-envoy-ext-authz
A simple envoy ext_authz server.
https://github.com/noahingh/simple-envoy-ext-authz
envoy ext-authz mocking
Last synced: about 1 month ago
JSON representation
A simple envoy ext_authz server.
- Host: GitHub
- URL: https://github.com/noahingh/simple-envoy-ext-authz
- Owner: noahingh
- License: mit
- Created: 2020-02-26T08:46:40.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-10-14T05:19:07.000Z (over 4 years ago)
- Last Synced: 2024-12-03T15:51:48.344Z (about 2 months ago)
- Topics: envoy, ext-authz, mocking
- Language: Go
- Size: 37.1 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Simple envoy ext_authz
![Build](https://github.com/hanjunlee/simple-envoy-ext-authz/workflows/Build/badge.svg)
## What's covered?
Envoy proxy support the external authorization i.e `envoy.ext_authz` in http filters. It'll cover you can mock the external authorization server when you have a test with Envoy.
## Features
* Authorized token
* Additional Header in the response## Usage
### Docker
```shell
$ docker run -p 50051:50051 ext-authz:0.1.0 -H foo=bar -H far=baz
# run server
2020/03/01 15:19:38 Starting gRPC Server at :50051, valid token: foo, headers: map[far:baz foo:bar].
```
Usage of server
-grpcport string
grpcport. (default ":50051")
-token string
authenticated token. (default "foo")
```