From 7cf744934ee2490d238e17f7fb3f682622a43eb2 Mon Sep 17 00:00:00 2001 From: derekwaynecarr Date: Tue, 18 Nov 2014 15:58:21 -0500 Subject: [PATCH] Fix tyop in authorization doc --- docs/authorization.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/authorization.md b/docs/authorization.md index da959a3406b..bcf3263cde7 100644 --- a/docs/authorization.md +++ b/docs/authorization.md @@ -14,9 +14,9 @@ the request, (such as user, resource kind, and namespace) with access policies. An API call must be allowed by some policy in order to proceed. The following implementations are available, and are selected by flag: - - `--authoriation_mode=AlwaysDeny` - - `--authoriation_mode=AlwaysAllow` - - `--authoriation_mode=ABAC` + - `--authorization_mode=AlwaysDeny` + - `--authorization_mode=AlwaysAllow` + - `--authorization_mode=ABAC` `AlwaysDeny` blocks all requests (used in tests). `AlwaysAllow` allows all requests; use if you don't need authorization.