From 282de00d80207e1f9c7015a437710fe9383da325 Mon Sep 17 00:00:00 2001 From: Alexander Matyushentsev Date: Wed, 24 Jul 2019 15:06:17 -0700 Subject: [PATCH] Fix invalid RBAC configuration example (add missing quotes) (#2003) --- docs/operator-manual/argocd-rbac-cm.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/operator-manual/argocd-rbac-cm.yaml b/docs/operator-manual/argocd-rbac-cm.yaml index 477f2690f8..6100f4dde5 100644 --- a/docs/operator-manual/argocd-rbac-cm.yaml +++ b/docs/operator-manual/argocd-rbac-cm.yaml @@ -22,6 +22,6 @@ data: policy.default: role:readonly # scopes controls which OIDC scopes to examine during rbac enforcement (in addition to `sub` scope). - # If omitted, defaults to: `[groups]`. The scope value can be a string, or a list of strings. - scopes: [cognito:groups, email] + # If omitted, defaults to: '[groups]'. The scope value can be a string, or a list of strings. + scopes: '[cognito:groups, email]'