You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
boundary/internal/cmd/commands/authtokenscmd/authtokens.go

30 lines
795 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package authtokenscmd
import "github.com/hashicorp/boundary/internal/cmd/base"
func (c *Command) extraHelpFunc(helpMap map[string]func() string) string {
var helpStr string
switch c.Func {
case "":
return base.WrapForHelpText([]string{
"Usage: boundary auth-tokens [sub command] [options] [args]",
"",
" This command allows operations on Boundary auth token resources. Example:",
"",
" List all auth tokens:",
"",
` $ boundary auth-tokens list -recursive `,
"",
" Please see the auth-tokens subcommand help for detailed usage information.",
" Note: To create an auth token, see the authenticate subcommand.",
})
default:
helpStr = helpMap["base"]()
}
return helpStr
}