Skip to content

Commit

Permalink
dist: fix typos in exemplary policies (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aeneas committed Jun 21, 2016
1 parent fc2ad6a commit 5b44457
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dist/policies/everyone-can-read-public-keys.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[
{
"description": "Allow everyone including anonymous users to read JSON Web Keys having Key ID *public*.",
"subject": ["<.*>"],
"subjects": ["<.*>"],
"effect": "allow",
"resources": [
"rn:hydra:keys:<[^:]+>:public"
],
"permissions": [
"actions": [
"get"
]
}
]
]
4 changes: 2 additions & 2 deletions dist/policies/noone-can-read-private-keys.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
[
{
"description": "Explicitly deny everyone reading JSON Web Keys with Key ID *private*.",
"subject": ["<.*>"],
"subjects": ["<.*>"],
"effect": "deny",
"resources": [
"rn:hydra:keys:<[^:]+>:private"
],
"permissions": [
"actions": [
"get"
]
}
Expand Down

0 comments on commit 5b44457

Please sign in to comment.