Skip to content

Commit fe417b8

Browse files
committed
update cli examples
1 parent b83d3cf commit fe417b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cli/cli.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ func NewCommand() *serpent.Command {
3737
// may be called something different when used as a subcommand / there will be a leading binary (i.e. `coder boundary` vs. `boundary`).
3838
cmd.Long += `Examples:
3939
# Allow only requests to github.com
40-
boundary --allow "github.com" -- curl https://github.com
40+
boundary --allow "domain=github.com" -- curl https://github.com
4141
4242
# Monitor all requests to specific domains (allow only those)
43-
boundary --allow "github.com/api/issues/*" --allow "GET,HEAD github.com" -- npm install
43+
boundary --allow "domain=github.com path=/api/issues/*" --allow "method=GET,HEAD domain=github.com" -- npm install
4444
4545
# Block everything by default (implicit)`
4646

0 commit comments

Comments
 (0)