cli: add json and template flag opts to acl boostrap command.

This commit is contained in:
James Rasell
2021-10-29 09:00:50 +02:00
parent 94dec4baf8
commit d02ecbddf1

View File

@@ -22,13 +22,24 @@ General Options:
` + generalOptionsUsage(usageOptsDefault|usageOptsNoNamespace) + `
Bootstrap Options:
-json
Output the bootstrap response in JSON format.
-t
Format and display the bootstrap response using a Go template.
`
return strings.TrimSpace(helpText)
}
func (c *ACLBootstrapCommand) AutocompleteFlags() complete.Flags {
return mergeAutocompleteFlags(c.Meta.AutocompleteFlags(FlagSetClient),
complete.Flags{})
complete.Flags{
"-json": complete.PredictNothing,
"-t": complete.PredictAnything,
})
}
func (c *ACLBootstrapCommand) AutocompleteArgs() complete.Predictor {
@@ -42,8 +53,16 @@ func (c *ACLBootstrapCommand) Synopsis() string {
func (c *ACLBootstrapCommand) Name() string { return "acl bootstrap" }
func (c *ACLBootstrapCommand) Run(args []string) int {
var (
json bool
tmpl string
)
flags := c.Meta.FlagSet(c.Name(), FlagSetClient)
flags.Usage = func() { c.Ui.Output(c.Help()) }
flags.BoolVar(&json, "json", false, "")
flags.StringVar(&tmpl, "t", "", "")
if err := flags.Parse(args); err != nil {
return 1
}
@@ -70,6 +89,17 @@ func (c *ACLBootstrapCommand) Run(args []string) int {
return 1
}
if json || len(tmpl) > 0 {
out, err := Format(json, tmpl, token)
if err != nil {
c.Ui.Error(err.Error())
return 1
}
c.Ui.Output(out)
return 0
}
// Format the output
c.Ui.Output(formatKVACLToken(token))
return 0