We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a60d6 commit 84541d6Copy full SHA for 84541d6
internal/cmd/beta/beta.go
@@ -4,6 +4,7 @@ import (
4
"fmt"
5
6
"github.com/stackitcloud/stackit-cli/internal/cmd/beta/alb"
7
+ "github.com/stackitcloud/stackit-cli/internal/cmd/beta/kms"
8
"github.com/stackitcloud/stackit-cli/internal/cmd/beta/sqlserverflex"
9
"github.com/stackitcloud/stackit-cli/internal/cmd/params"
10
"github.com/stackitcloud/stackit-cli/internal/pkg/args"
@@ -38,4 +39,5 @@ func NewCmd(params *params.CmdParams) *cobra.Command {
38
39
func addSubcommands(cmd *cobra.Command, params *params.CmdParams) {
40
cmd.AddCommand(sqlserverflex.NewCmd(params))
41
cmd.AddCommand(alb.NewCmd(params))
42
+ cmd.AddCommand(kms.NewCmd(params))
43
}
0 commit comments