// Code generated by gotmpl. DO NOT MODIFY.
// source: internal/shared/otlp/otlptrace/otlpconfig/tls.go.tmpl

// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0

package otlpconfig // import "go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc/internal/otlpconfig"

import (
	
	
	
)

// CreateTLSConfig creates a tls.Config from a raw certificate bytes
// to verify a server certificate.
func ( []byte) (*tls.Config, error) {
	 := x509.NewCertPool()
	if  := .AppendCertsFromPEM(); ! {
		return nil, errors.New("failed to append certificate to the cert pool")
	}

	return &tls.Config{
		RootCAs: ,
	}, nil
}