External Authorization

The external authorization HTTP filter calls an external gRPC or HTTP service to check if the incoming HTTP request is authorized or not. If the request is deemed unauthorized then the request will be denied normally with 403 (Forbidden) response. Note that sending additional custom metadata from the authorization service to the upstream, to the downstream or to the authorization service is also possible. This is explained in more details at HTTP filter.

Tip

It is recommended that this filter is configured first in the filter chain so that requests are authorized prior to the rest of filters processing the request.

The content of the requests that are passed to an authorization service is specified by CheckRequest.

The HTTP filter, using a gRPC/HTTP service, can be configured as follows. You can see all the configuration options at HTTP filter.

Configuration Examples

A sample filter configuration for a gRPC authorization server:

  1. http_filters:
  2. - name: envoy.ext_authz
  3. config:
  4. grpc_service:
  5. envoy_grpc:
  6. cluster_name: ext-authz
  1. clusters:
  2. - name: ext-authz
  3. type: static
  4. http2_protocol_options: {}
  5. hosts:
  6. - socket_address: { address: 127.0.0.1, port_value: 10003 }

A sample filter configuration for a raw HTTP authorization server:

  1. http_filters:
  2. - name: envoy.ext_authz
  3. config:
  4. http_service:
  5. server_uri:
  6. uri: 127.0.0.1:10003
  7. cluster: ext-authz
  8. timeout: 0.25s
  9. failure_mode_allow: false
  1. clusters:
  2. - name: ext-authz
  3. connect_timeout: 0.25s
  4. type: logical_dns
  5. lb_policy: round_robin
  6. hosts:
  7. - socket_address: { address: 127.0.0.1, port_value: 10003 }

Statistics

The HTTP filter outputs statistics in the cluster..ext_authz. namespace.

NameTypeDescription
okCounterTotal responses from the filter.
errorCounterTotal errors contacting the external service.
deniedCounterTotal responses from the authorizations service that were to deny the traffic.
failure_mode_allowedCounterTotal requests that were error(s) but were allowed through because of failure_mode_allow set to true.