github.com/thanos-io/thanos@v0.32.5/internal/cortex/util/tls/tls.go (about)

     1  // Copyright (c) The Cortex Authors.
     2  // Licensed under the Apache License 2.0.
     3  
     4  package tls
     5  
     6  // ClientConfig is the config for client TLS.
     7  type ClientConfig struct {
     8  	CertPath           string `yaml:"tls_cert_path"`
     9  	KeyPath            string `yaml:"tls_key_path"`
    10  	CAPath             string `yaml:"tls_ca_path"`
    11  	ServerName         string `yaml:"tls_server_name"`
    12  	InsecureSkipVerify bool   `yaml:"tls_insecure_skip_verify"`
    13  }