Skip to content

Commit 6e1c3c7

Browse files
committed
Fix inadvertent bolding by escaping wildcard character
1 parent a38aed9 commit 6e1c3c7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

content/modules/ROOT/pages/02-argocd-rbac.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ link:https://argo-cd.readthedocs.io/en/stable/operator-manual/rbac/#rbac-resourc
295295
<4> After resource we define the actions for the policy, in this case we use a wildcard, '*', to permit all actions. Many
296296
different link:https://argo-cd.readthedocs.io/en/stable/operator-manual/rbac/#rbac-resources-and-actions[actions, window="_blank"]
297297
are available.
298-
<5> Next is the specific Argo CD resource, this can be a wildcard like `*` for all resources or a named resource such as specific Applications. In this case
298+
<5> Next is the specific Argo CD resource, this can be a wildcard like `\*` for all resources or a named resource such as specific Applications. In this case
299299
we have `workshop/*` which allows all Applications that belong to the `workshop` Project.
300300
<6> Finally whether we `allow` or `deny` the permission, in this case we `allow` to grant permissions.
301301

@@ -423,7 +423,7 @@ reviewed earlier. While `groups` is the most commonly set scope, having scopes l
423423
allows you to match roles to individual users. In a nutshell, when adding additional scopes, like `email`, these
424424
are treated as groups by Argo CD for matching purposes.
425425

426-
We can also define our own policies here, as we can see with the new `role:none` policy that was added as mentioned earlier.
426+
We can also define our own policies here, as we can see with the new `role:none` policy that was added as mentioned earlier.
427427

428428
Confirm that you can now see all Projects by going back to Settings > Projects:
429429

0 commit comments

Comments
 (0)