Basic Auth
This HTTP filter can be used to authenticate user credentials in the HTTP Authentication header defined in RFC7617 <https://tools.ietf.org/html/rfc7617>.
The filter will extract the username and password from the HTTP Authentication header and verify them against the configured username and password list.
If the username and password are valid, the request will be forwared to the next filter in the filter chains. If they’re invalid or not provided in the HTTP request, the request will be denied with a 401 Unauthorized response.
Configuration
This filter should be configured with the type URL
type.googleapis.com/envoy.extensions.filters.http.basic_auth.v3.BasicAuth
.
users
is a list of username-password pairs used to verify user credentials in the “Authorization” header.The value needs to be the htpasswd <https://httpd.apache.org/docs/2.4/programs/htpasswd.html> format.
An example configuration of the filter may look like the following:
users:
inline_string: |-
user1:{SHA}hashed_user1_password
user2:{SHA}hashed_user2_password
Note that only SHA format is currently supported. Other formats may be added in the future.
Statistics
The HTTP basic auth filter outputs statistics in the http.<stat_prefix>.basic_auth.
namespace.
Name |
Type |
Description |
---|---|---|
allowed |
Counter |
Total number of allowed requests |
denied |
Counter |
Total number of denied requests |