Introduce a "vault license get" command (#11526)

This commit is contained in:
Josh Black
2021-05-04 12:55:48 -07:00
committed by GitHub
parent 2feeb39b85
commit ed1727c9c2
3 changed files with 155 additions and 0 deletions

View File

@@ -296,6 +296,16 @@ func initCommands(ui, serverCmdUi cli.Ui, runOpts *RunOptions) {
BaseCommand: getBaseCommand(),
}, nil
},
"license": func() (cli.Command, error) {
return &LicenseCommand{
BaseCommand: getBaseCommand(),
}, nil
},
"license get": func() (cli.Command, error) {
return &LicenseGetCommand{
BaseCommand: getBaseCommand(),
}, nil
},
"list": func() (cli.Command, error) {
return &ListCommand{
BaseCommand: getBaseCommand(),