From 0aa3eba8c3ab94afdbb39e98c6a45ec940244627 Mon Sep 17 00:00:00 2001 From: mmattel Date: Tue, 27 Dec 2022 10:58:52 +0100 Subject: [PATCH] readding accidentially deleted entry --- services/postprocessing/pkg/config/config.go | 1 + 1 file changed, 1 insertion(+) diff --git a/services/postprocessing/pkg/config/config.go b/services/postprocessing/pkg/config/config.go index a0ac5ffa52..72a2ee38c4 100644 --- a/services/postprocessing/pkg/config/config.go +++ b/services/postprocessing/pkg/config/config.go @@ -34,4 +34,5 @@ type Events struct { TLSInsecure bool `yaml:"tls_insecure" env:"OCIS_INSECURE;SEARCH_EVENTS_TLS_INSECURE" desc:"Whether the ocis server should skip the client certificate verification during the TLS handshake."` TLSRootCACertificate string `yaml:"tls_root_ca_certificate" env:"SEARCH_EVENTS_TLS_ROOT_CA_CERTIFICATE" desc:"The root CA certificate used to validate the server's TLS certificate. If provided SEARCH_EVENTS_TLS_INSECURE will be seen as false."` + EnableTLS bool `yaml:"enable_tls" env:"OCIS_EVENTS_ENABLE_TLS;POSTPROCESSING_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."` }