feat: resolved list secret plain to have key as well

This commit is contained in:
=
2025-01-30 00:31:47 +05:30
parent 216cae9b33
commit 8759944077

View File

@@ -110,7 +110,7 @@ var secretsCmd = &cobra.Command{
if plainOutput {
for _, secret := range secrets {
fmt.Println(secret.Value)
fmt.Println(fmt.Sprintf("%s=%s", secret.Key, secret.Value))
}
} else {
visualize.PrintAllSecretDetails(secrets)