backport of commit 1336abddfe (#20796)

Co-authored-by: Larroyo <95649169+DeLuci@users.noreply.github.com>
This commit is contained in:
hc-github-team-secure-vault-core
2023-05-25 17:05:29 -04:00
committed by GitHub
parent ee93c26137
commit e07a17afe8
7 changed files with 221 additions and 14 deletions

View File

@@ -704,6 +704,21 @@ func initCommands(ui, serverCmdUi cli.Ui, runOpts *RunOptions) map[string]cli.Co
BaseCommand: getBaseCommand(),
}, nil
},
"transform": func() (cli.Command, error) {
return &TransformCommand{
BaseCommand: getBaseCommand(),
}, nil
},
"transform import": func() (cli.Command, error) {
return &TransformImportCommand{
BaseCommand: getBaseCommand(),
}, nil
},
"transform import-version": func() (cli.Command, error) {
return &TransformImportVersionCommand{
BaseCommand: getBaseCommand(),
}, nil
},
"transit": func() (cli.Command, error) {
return &TransitCommand{
BaseCommand: getBaseCommand(),