diff --git a/services/idp/pkg/config/http.go b/services/idp/pkg/config/http.go index 02a31415b1..a178eda7f5 100644 --- a/services/idp/pkg/config/http.go +++ b/services/idp/pkg/config/http.go @@ -7,5 +7,5 @@ type HTTP struct { Namespace string `yaml:"-"` TLSCert string `yaml:"tls_cert" env:"IDP_TRANSPORT_TLS_CERT" desc:"File name of the TLS server certificate for the HTTPS server."` TLSKey string `yaml:"tls_key" env:"IDP_TRANSPORT_TLS_KEY" desc:"File name of the TLS server certificate key for the HTTPS server."` - TLS bool `yaml:"tls" env:"IDP_TLS" desc:"Use HTTPS server instead of HTTP server."` + TLS bool `yaml:"tls" env:"IDP_TLS" desc:"Use the HTTPS server instead of the HTTP server."` } diff --git a/services/proxy/pkg/config/http.go b/services/proxy/pkg/config/http.go index 7a29b8dde2..2ed22d9f94 100644 --- a/services/proxy/pkg/config/http.go +++ b/services/proxy/pkg/config/http.go @@ -7,5 +7,5 @@ type HTTP struct { Namespace string `yaml:"-"` TLSCert string `yaml:"tls_cert" env:"PROXY_TRANSPORT_TLS_CERT" desc:"File name of the TLS server certificate for the HTTPS server."` TLSKey string `yaml:"tls_key" env:"PROXY_TRANSPORT_TLS_KEY" desc:"File name of the TLS server certificate key for the HTTPS server."` - TLS bool `yaml:"tls" env:"PROXY_TLS" desc:"Use HTTPS server instead of HTTP server."` + TLS bool `yaml:"tls" env:"PROXY_TLS" desc:"Use the HTTPS server instead of the HTTP server."` }