mirror of
https://github.com/openziti/zrok.git
synced 2025-06-02 08:05:58 +02:00
zrok status --secrets (#243)
This commit is contained in:
parent
7f262f12cc
commit
23ab36d376
@ -14,7 +14,8 @@ func init() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type statusCommand struct {
|
type statusCommand struct {
|
||||||
cmd *cobra.Command
|
secrets bool
|
||||||
|
cmd *cobra.Command
|
||||||
}
|
}
|
||||||
|
|
||||||
func newStatusCommand() *statusCommand {
|
func newStatusCommand() *statusCommand {
|
||||||
@ -25,6 +26,7 @@ func newStatusCommand() *statusCommand {
|
|||||||
Args: cobra.ExactArgs(0),
|
Args: cobra.ExactArgs(0),
|
||||||
}
|
}
|
||||||
command := &statusCommand{cmd: cmd}
|
command := &statusCommand{cmd: cmd}
|
||||||
|
cmd.Flags().BoolVar(&command.secrets, "secrets", false, "Show secrets in status output")
|
||||||
cmd.Run = command.run
|
cmd.Run = command.run
|
||||||
return command
|
return command
|
||||||
}
|
}
|
||||||
@ -57,8 +59,22 @@ func (cmd *statusCommand) run(_ *cobra.Command, _ []string) {
|
|||||||
t.SetOutputMirror(os.Stdout)
|
t.SetOutputMirror(os.Stdout)
|
||||||
t.SetStyle(table.StyleColoredDark)
|
t.SetStyle(table.StyleColoredDark)
|
||||||
t.AppendHeader(table.Row{"Property", "Value"})
|
t.AppendHeader(table.Row{"Property", "Value"})
|
||||||
t.AppendRow(table.Row{"Secret Token", zrd.Env.Token})
|
if cmd.secrets {
|
||||||
t.AppendRow(table.Row{"Ziti Identity", zrd.Env.ZId})
|
t.AppendRow(table.Row{"Secret Token", zrd.Env.Token})
|
||||||
|
t.AppendRow(table.Row{"Ziti Identity", zrd.Env.ZId})
|
||||||
|
} else {
|
||||||
|
secretToken := "<<SET>>"
|
||||||
|
if zrd.Env.Token == "" {
|
||||||
|
secretToken = "<<UNSET>>"
|
||||||
|
}
|
||||||
|
t.AppendRow(table.Row{"Secret Token", secretToken})
|
||||||
|
|
||||||
|
zId := "<<SET>>"
|
||||||
|
if zrd.Env.ZId == "" {
|
||||||
|
zId = "<<UNSET>>"
|
||||||
|
}
|
||||||
|
t.AppendRow(table.Row{"Ziti Identity", zId})
|
||||||
|
}
|
||||||
t.Render()
|
t.Render()
|
||||||
}
|
}
|
||||||
_, _ = fmt.Fprintf(os.Stdout, "\n")
|
_, _ = fmt.Fprintf(os.Stdout, "\n")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user