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/credentialscmd/json_credentials_funcs.go

37 lines
968 B

// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: BUSL-1.1
package credentialscmd
import (
"github.com/hashicorp/boundary/internal/cmd/base"
)
func (c *JsonCommand) extraJsonHelpFunc(_ map[string]func() string) string {
var helpStr string
switch c.Func {
case "create":
helpStr = base.WrapForHelpText([]string{
"Usage: boundary credentials create json -credential-store-id [options] [args]",
"",
" Create a json credential. Example:",
"",
` $ boundary credentials create json -credential-store-id csst_1234567890 -object file:///home/user/secret`,
"",
"",
})
case "update":
helpStr = base.WrapForHelpText([]string{
"Usage: boundary credentials update json [options] [args]",
"",
" Update a json credential given its ID. Example:",
"",
` $ boundary credentials update json -id csst_1234567890 -name devops -description "For DevOps usage"`,
"",
"",
})
}
return helpStr + c.Flags().Help()
}