forked from hashicorp/nomad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
acl.go
38 lines (27 loc) · 791 Bytes
/
acl.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package command
import (
"strings"
"github.com/mitchellh/cli"
)
type ACLCommand struct {
Meta
}
func (f *ACLCommand) Help() string {
helpText := `
Usage: nomad acl <subcommand> [options] [args]
This command groups subcommands for interacting with ACL policies and tokens.
Users can bootstrap Nomad's ACL system, create policies that restrict access,
and generate tokens from those policies.
Bootstrap ACLs:
$ nomad acl bootstrap
Please see the individual subcommand help for detailed usage information.
`
return strings.TrimSpace(helpText)
}
func (f *ACLCommand) Synopsis() string {
return "Interact with ACL policies and tokens"
}
func (f *ACLCommand) Name() string { return "acl" }
func (f *ACLCommand) Run(args []string) int {
return cli.RunResultHelp
}