mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
58 lines
1.3 KiB
Go
58 lines
1.3 KiB
Go
|
package cmds
|
||
|
|
||
|
import (
|
||
|
"os"
|
||
|
|
||
|
"github.com/caos/orbos/pkg/secret"
|
||
|
"github.com/caos/zitadel/operator/secrets"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
func ReadSecretCommand(rv RootValues) *cobra.Command {
|
||
|
return &cobra.Command{
|
||
|
Use: "readsecret [path]",
|
||
|
Short: "Print a secrets decrypted value to stdout",
|
||
|
Long: "Print a secrets decrypted value to stdout.\nIf no path is provided, a secret can interactively be chosen from a list of all possible secrets",
|
||
|
Args: cobra.MaximumNArgs(1),
|
||
|
Example: `zitadelctl readsecret zitadel.emailappkey > ~/emailappkey`,
|
||
|
RunE: func(cmd *cobra.Command, args []string) error {
|
||
|
|
||
|
_, monitor, orbConfig, gitClient, _, errFunc, err := rv()
|
||
|
if err != nil {
|
||
|
return err
|
||
|
}
|
||
|
defer func() {
|
||
|
err = errFunc(err)
|
||
|
}()
|
||
|
if err := gitClient.Configure(orbConfig.URL, []byte(orbConfig.Repokey)); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
if err := gitClient.Clone(); err != nil {
|
||
|
return err
|
||
|
}
|
||
|
|
||
|
path := ""
|
||
|
if len(args) > 0 {
|
||
|
path = args[0]
|
||
|
}
|
||
|
|
||
|
value, err := secret.Read(
|
||
|
monitor,
|
||
|
gitClient,
|
||
|
path,
|
||
|
secrets.GetAllSecretsFunc(orbConfig))
|
||
|
if err != nil {
|
||
|
monitor.Error(err)
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
if _, err := os.Stdout.Write([]byte(value)); err != nil {
|
||
|
monitor.Error(err)
|
||
|
return nil
|
||
|
}
|
||
|
return nil
|
||
|
},
|
||
|
}
|
||
|
}
|