From 9bb7628fbc756e70f10360539a28215c30bdd6dd Mon Sep 17 00:00:00 2001 From: Sudarsan Reddy Date: Wed, 21 Sep 2022 11:16:37 +0100 Subject: [PATCH] TUN-6772: Add a JWT Validator as an ingress verifier This adds a new verifier interface that can be attached to ingress.Rule. This would act as a middleware layer that gets executed at the start of proxy.ProxyHTTP. A jwt validator implementation for this verifier is also provided. The validator downloads the public key from the access teams endpoint and uses it to verify the JWT sent to cloudflared with the audtag (clientID) information provided in the config. --- ingress/middleware/verifier.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 ingress/middleware/verifier.go diff --git a/ingress/middleware/verifier.go b/ingress/middleware/verifier.go new file mode 100644 index 00000000..7888dc31 --- /dev/null +++ b/ingress/middleware/verifier.go @@ -0,0 +1,10 @@ +package middleware + +import ( + "context" + "net/http" +) + +type Handler interface { + Handle(ctx context.Context, r *http.Request) error +}