minor cli updates

Signed-off-by: Evan Hazlett <ejhazlett@gmail.com>
This commit is contained in:
Evan Hazlett 2019-10-11 07:33:24 -04:00
parent fb314539eb
commit a8de9bcbdb
No known key found for this signature in database
GPG key ID: A519480096146526

View file

@ -55,15 +55,18 @@ func main() {
Name: "cert, c", Name: "cert, c",
Usage: "heimdall client certificate", Usage: "heimdall client certificate",
Value: "", Value: "",
EnvVar: "HEIMDALL_CLIENT_CERT",
}, },
cli.StringFlag{ cli.StringFlag{
Name: "key, k", Name: "key, k",
Usage: "heimdall client key", Usage: "heimdall client key",
Value: "", Value: "",
EnvVar: "HEIMDALL_CLIENT_KEY",
}, },
cli.BoolFlag{ cli.BoolFlag{
Name: "skip-verify", Name: "skip-verify",
Usage: "skip TLS verification", Usage: "skip TLS verification",
EnvVar: "HEIMDALL_SKIP_VERIFY",
}, },
} }
app.Before = func(c *cli.Context) error { app.Before = func(c *cli.Context) error {