Skip to content

Commit d0bc60b

Browse files
committed
Fix bad merge
1 parent 6caa48c commit d0bc60b

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

connect/provider.go

+3-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ package connect
22

33
import (
44
"context"
5-
"crypto/tls"
5+
"crypto/tls"
66
"log"
77

88
"github.com/hashicorp/terraform-plugin-sdk/v2/diag"
@@ -44,6 +44,7 @@ func Provider() *schema.Provider {
4444
Type: schema.TypeBool,
4545
Optional: true,
4646
DefaultFunc: schema.EnvDefaultFunc("KAFKA_CONNECT_TLS_IS_INSECURE", ""),
47+
},
4748
"headers": {
4849
Type: schema.TypeMap,
4950
Elem: &schema.Schema{
@@ -87,7 +88,7 @@ func providerConfigure(ctx context.Context, d *schema.ResourceData) (interface{}
8788
if is_insecure {
8889
c.SetInsecureSSL()
8990
}
90-
c.SetClientCertificates(cert)
91+
c.SetClientCertificates(cert)
9192
}
9293
}
9394
headers := d.Get("headers").(map[string]interface{})

0 commit comments

Comments
 (0)