-
Notifications
You must be signed in to change notification settings - Fork 312
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Correct variable names - Add token display variables - Update documentation - Remove deprecated variables
- Loading branch information
1 parent
9fbc184
commit 8174005
Showing
10 changed files
with
151 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Default all keys to read-only | ||
key "" { | ||
policy = "read" | ||
} | ||
key "foo/" { | ||
policy = "write" | ||
} | ||
key "foo/private/" { | ||
# Deny access to the dir "foo/private" | ||
policy = "deny" | ||
} | ||
|
||
# Default all services to allow registration. Also permits all | ||
# services to be discovered. | ||
service "" { | ||
policy = "write" | ||
} | ||
|
||
# Deny registration access to services prefixed "secure-". | ||
# Discovery of the service is still allowed in read mode. | ||
service "secure-" { | ||
policy = "read" | ||
} | ||
|
||
# Allow firing any user event by default. | ||
event "" { | ||
policy = "write" | ||
} | ||
|
||
# Deny firing events prefixed with "destroy-". | ||
event "destroy-" { | ||
policy = "deny" | ||
} | ||
|
||
# Default prepared queries to read-only. | ||
query "" { | ||
policy = "read" | ||
} | ||
|
||
# Read-only mode for the encryption keyring by default (list only) | ||
keyring = "read" | ||
|
||
# Read-only mode for Consul operator interfaces (list only) | ||
operator = "read" |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
v1.3.0 | ||
v1.3.1 |