Fix rule in access control example using denials (#556)

Fixes wrong spec.actions.handler definition
This commit is contained in:
Mark Eijsermans 2017-09-28 09:13:07 -07:00 committed by Shriram Rajagopalan
parent d710a97591
commit f11615e3fd
1 changed files with 1 additions and 1 deletions

View File

@ -90,7 +90,7 @@ of the `reviews` service. We would like to cut off access to version `v3` of the
spec:
match: destination.labels["app"] == "ratings" && source.labels["app"]=="reviews" && source.labels["version"] == "v3"
actions:
- handler: denyall.denier
- handler: handler.denier
instances:
- denyrequest.checknothing
```