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 d1179ca commit 6305484Copy full SHA for 6305484
internal/config/viper.go
@@ -21,6 +21,8 @@ func Bind(cmd *cobra.Command, vp *viper.Viper) *ViperConfig {
21
vp.BindEnv("api-path", "STS_CLI_API_PATH")
22
vp.BindEnv("context", "STS_CLI_CONTEXT")
23
vp.BindEnv("skip-ssl", "STS_SKIP_SSL")
24
+ vp.BindEnv("ca-cert-path", "STS_CA_CERT_PATH")
25
+ vp.BindEnv("ca-cert-base64-data", "STS_CA_CERT_BASE64_DATA")
26
27
// bind flags
28
vp.BindPFlag("url", cmd.Flags().Lookup("url"))
0 commit comments