From f1051c63124ffdac30ad9f06f5fbad58297b6373 Mon Sep 17 00:00:00 2001 From: kobergj Date: Thu, 12 Jan 2023 10:58:04 +0100 Subject: [PATCH] Update services/hub/pkg/config/config.go Co-authored-by: Martin --- services/hub/pkg/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/hub/pkg/config/config.go b/services/hub/pkg/config/config.go index 31d051599f5..4a29ac0cb9e 100644 --- a/services/hub/pkg/config/config.go +++ b/services/hub/pkg/config/config.go @@ -40,7 +40,7 @@ type TokenManager struct { type Events struct { Endpoint string `yaml:"endpoint" env:"HUB_EVENTS_ENDPOINT" desc:"The address of the event system. The event system is the message queuing service. It is used as message broker for the microservice architecture."` Cluster string `yaml:"cluster" env:"HUB_EVENTS_CLUSTER" desc:"The clusterID of the event system. The event system is the message queuing service. It is used as message broker for the microservice architecture. Mandatory when using NATS as event system."` - TLSInsecure bool `yaml:"tls_insecure" env:"OCIS_INSECURE;HUB_EVENTS_TLS_INSECURE" desc:"Whether to verify the server TLS certificates."` + TLSInsecure bool `yaml:"tls_insecure" env:"OCIS_INSECURE;HUB_EVENTS_TLS_INSECURE" desc:"Whether the server should skip the client certificate verification during the TLS handshake."` TLSRootCACertificate string `yaml:"tls_root_ca_certificate" env:"HUB_EVENTS_TLS_ROOT_CA_CERTIFICATE" desc:"The root CA certificate used to validate the server's TLS certificate. If provided HUB_EVENTS_TLS_INSECURE will be seen as false."` EnableTLS bool `yaml:"enable_tls" env:"OCIS_EVENTS_ENABLE_TLS;HUB_EVENTS_ENABLE_TLS" desc:"Enable TLS for the connection to the events broker. The events broker is the ocis service which receives and delivers events between the services.."` }