mirror of https://github.com/istio/istio.io.git
add task for JWT claim based routing (#10332)
* add task for JWT claim based routing * move to security * update * update * update
This commit is contained in:
parent
c23ccc761b
commit
3053d41089
|
|
@ -0,0 +1,173 @@
|
|||
---
|
||||
title: JWT claim based routing
|
||||
description: Shows you how to use Istio authentication policy to route requests based on JWT claims.
|
||||
weight: 10
|
||||
keywords: [security,authentication,jwt,route]
|
||||
owner: istio/wg-security-maintainers
|
||||
test: no
|
||||
status: Experimental
|
||||
---
|
||||
|
||||
This task shows you how to route requests based on JWT claims on an Istio ingress gateway using the request authentication
|
||||
and virtual service.
|
||||
|
||||
Note: this feature only supports Istio ingress gateway and requires the use of both request authentication and virtual
|
||||
service to properly validate and route based on JWT claims.
|
||||
|
||||
{{< boilerplate experimental-feature-warning >}}
|
||||
|
||||
## Before you begin
|
||||
|
||||
* Understand Istio [authentication policy](/docs/concepts/security/#authentication-policies) and [virtual service](/docs/concepts/traffic-management/#virtual-services) concepts.
|
||||
|
||||
* Install Istio using the [Istio installation guide](/docs/setup/install/istioctl/).
|
||||
|
||||
* Deploy a workload, `httpbin` in a namespace, for example `foo`, and expose it through the Istio ingress gateway with this command:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl create ns foo
|
||||
$ kubectl apply -f <(istioctl kube-inject -f @samples/httpbin/httpbin.yaml@) -n foo
|
||||
$ kubectl apply -f <(istioctl kube-inject -f @samples/httpbin/httpbin-gateway.yaml@) -n foo
|
||||
{{< /text >}}
|
||||
|
||||
* Follow the instructions in
|
||||
[Determining the ingress IP and ports](/docs/tasks/traffic-management/ingress/ingress-control/#determining-the-ingress-ip-and-ports)
|
||||
to define the `INGRESS_HOST` and `INGRESS_PORT` environment variables.
|
||||
|
||||
* Verify that the `httpbin` workload and ingress gateway are working as expected using this command:
|
||||
|
||||
{{< text bash >}}
|
||||
$ curl "$INGRESS_HOST:$INGRESS_PORT"/headers -s -o /dev/null -w "%{http_code}\n"
|
||||
200
|
||||
{{< /text >}}
|
||||
|
||||
{{< warning >}}
|
||||
If you don’t see the expected output, retry after a few seconds. Caching and propagation overhead can cause a delay.
|
||||
{{< /warning >}}
|
||||
|
||||
## Configuring ingress routing based on JWT claims
|
||||
|
||||
The Istio ingress gateway supports routing based on authenticated JWT, which is useful for routing based on end user
|
||||
identity and more secure compared using the unauthenticated HTTP attributes (e.g. path or header).
|
||||
|
||||
1. In order to route based on JWT claims, first create the request authentication to enable JWT validation:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl apply -f - <<EOF
|
||||
apiVersion: security.istio.io/v1beta1
|
||||
kind: RequestAuthentication
|
||||
metadata:
|
||||
name: ingress-jwt
|
||||
namespace: istio-system
|
||||
spec:
|
||||
selector:
|
||||
matchLabels:
|
||||
istio: ingressgateway
|
||||
jwtRules:
|
||||
- issuer: "testing@secure.istio.io"
|
||||
jwksUri: "{{< github_file >}}/security/tools/jwt/samples/jwks.json"
|
||||
EOF
|
||||
{{< /text >}}
|
||||
|
||||
The request authentication enables JWT validation on the Istio ingress gateway so that the validated JWT claims
|
||||
can later be used in the virtual service for routing purposes.
|
||||
|
||||
1. Update the virtual service to route based on validated JWT claims:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl apply -f - <<EOF
|
||||
apiVersion: networking.istio.io/v1alpha3
|
||||
kind: VirtualService
|
||||
metadata:
|
||||
name: httpbin
|
||||
namespace: foo
|
||||
spec:
|
||||
hosts:
|
||||
- "*"
|
||||
gateways:
|
||||
- httpbin-gateway
|
||||
http:
|
||||
- match:
|
||||
- uri:
|
||||
prefix: /headers
|
||||
headers:
|
||||
x-jwt-claim.groups: # "x-jwt-claim" is a reserved header for matching JWT claims only.
|
||||
exact: group1
|
||||
route:
|
||||
- destination:
|
||||
port:
|
||||
number: 8000
|
||||
host: httpbin
|
||||
EOF
|
||||
{{< /text >}}
|
||||
|
||||
The virtual service uses the reserved header `x-jwt-claim` to match the validated JWT claims that are made available
|
||||
by the request authentication.
|
||||
|
||||
## Validating ingress routing based on JWT claims
|
||||
|
||||
1. Validate the ingress gateway returns the HTTP code 404 without JWT:
|
||||
|
||||
{{< text bash >}}
|
||||
$ curl -s -I "http://$INGRESS_HOST:$INGRESS_PORT/headers"
|
||||
HTTP/1.1 404 Not Found
|
||||
...
|
||||
{{< /text >}}
|
||||
|
||||
You can also create the authorization policy to explicitly reject the request with HTTP code 403 when JWT is missing.
|
||||
|
||||
1. Validate the ingress gateway returns the HTTP code 401 with invalid JWT:
|
||||
|
||||
{{< text bash >}}
|
||||
$ curl -s -I "http://$INGRESS_HOST:$INGRESS_PORT/headers" -H "Authorization: Bearer some.invalid.token"
|
||||
HTTP/1.1 401 Unauthorized
|
||||
...
|
||||
{{< /text >}}
|
||||
|
||||
The 401 is returned by the request authentication because the JWT failed the validation.
|
||||
|
||||
1. Validate the ingress gateway routes the request with a valid JWT token that includes the claim `groups: group1`:
|
||||
|
||||
{{< text syntax="bash" expandlinks="false" >}}
|
||||
$ TOKEN_GROUP=$(curl {{< github_file >}}/security/tools/jwt/samples/groups-scope.jwt -s) && echo "$TOKEN_GROUP" | cut -d '.' -f2 - | base64 --decode -
|
||||
{"exp":3537391104,"groups":["group1","group2"],"iat":1537391104,"iss":"testing@secure.istio.io","scope":["scope1","scope2"],"sub":"testing@secure.istio.io"}
|
||||
{{< /text >}}
|
||||
|
||||
{{< text bash >}}
|
||||
$ curl -s -I "http://$INGRESS_HOST:$INGRESS_PORT/headers" -H "Authorization: Bearer $TOKEN_GROUP"
|
||||
HTTP/1.1 200 OK
|
||||
...
|
||||
{{< /text >}}
|
||||
|
||||
1. Validate the ingress gateway returns the HTTP code 404 with a valid JWT but does not include the claim `groups: group1`:
|
||||
|
||||
{{< text syntax="bash" expandlinks="false" >}}
|
||||
$ TOKEN_NO_GROUP=$(curl {{< github_file >}}/security/tools/jwt/samples/demo.jwt -s) && echo "$TOKEN_NO_GROUP" | cut -d '.' -f2 - | base64 --decode -
|
||||
{"exp":4685989700,"foo":"bar","iat":1532389700,"iss":"testing@secure.istio.io","sub":"testing@secure.istio.io"}
|
||||
{{< /text >}}
|
||||
|
||||
{{< text bash >}}
|
||||
$ curl -s -I "http://$INGRESS_HOST:$INGRESS_PORT/headers" -H "Authorization: Bearer $TOKEN_NO_GROUP"
|
||||
HTTP/1.1 404 Not Found
|
||||
...
|
||||
{{< /text >}}
|
||||
|
||||
Note the `x-jwt-claim` is a reserved header name for matching the validated JWT claims only. It will not match the normal
|
||||
HTTP headers.
|
||||
|
||||
Claims of type string or list of string are supported and nested claims are also supported using `.` as a separator for
|
||||
claim names. For example, `x-jwt-claim.admin` matches the claim "admin" and `x-jwt-claim.group.id` matches the nested claims "group" and "id".
|
||||
|
||||
## Cleanup
|
||||
|
||||
* Remove the namespace `foo`:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl delete namespace foo
|
||||
{{< /text >}}
|
||||
|
||||
* Remove the request authentication:
|
||||
|
||||
{{< text bash >}}
|
||||
$ kubectl delete requestauthentication ingress-jwt -n istio-system
|
||||
{{< /text >}}
|
||||
|
|
@ -132,11 +132,13 @@ Next, you will change the route configuration so that all traffic from a specifi
|
|||
is routed to a specific service version. In this case, all traffic from a user
|
||||
named Jason will be routed to the service `reviews:v2`.
|
||||
|
||||
Note that Istio doesn't have any special, built-in understanding of user
|
||||
identity. This example is enabled by the fact that the `productpage` service
|
||||
This example is enabled by the fact that the `productpage` service
|
||||
adds a custom `end-user` header to all outbound HTTP requests to the reviews
|
||||
service.
|
||||
|
||||
Istio also supports routing based on strongly authenticated JWT on ingress gateway, refer to the
|
||||
[JWT claim based routing](/docs/tasks/security/authentication/jwt-route) for more details.
|
||||
|
||||
Remember, `reviews:v2` is the version that includes the star ratings feature.
|
||||
|
||||
1. Run the following command to enable user-based routing:
|
||||
|
|
|
|||
Loading…
Reference in New Issue