A sidecar container to enforce security policy.
The current implementation is working with Auth0 https://auth0.com/docs/authorization tokens in the incoming request http headers.
The proxy should work with any compliant JWT based token but it is possible there are assumptions made specific to Auth0.
The proxy is specifically securing the Somind DtLab when it evaluates permission claims.
It retrieves the JWK store of public keys from a configured URL. In its default deployment, that URL is
https://navicore.us.auth0.com/Override this by setting ENV var JWK_HOST to your own JWK store host and root path.
When a request destined for a service is intercepted by the proxy, it does the following:
- Extract the token from the
Authorizationheader, stripBearer. - Parse the token.
- Verify the token was signed by us and is not expired.
- Extract the permissions from the claims.
- Calculate required permissions by looking at the http method and the root DtLab object being operated on. ie:
read:type,write:actor. Future implementations will supportread:actor.my_fav_actor_typeswhere root type works like a multi-tenant namespace. - Verify that the required permission is in the list of permissions extracted from the signed token.
If the above have no issues, then forward the request to the configured REMOTE_HOST and REMOTE_PORT.