Skip to content

Commit

Permalink
nolint:gosec
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub <noreply@github.com>
  • Loading branch information
Ernest Wong authored May 19, 2022
1 parent b047790 commit 67caae8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion constraint/pkg/externaldata/request.go
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ func getClient(provider *v1alpha1.Provider, clientCert *tls.Certificate) (*http.
tlsConfig := &tls.Config{
// present our client cert to the server
// in case provider wants to verify it
Certificates: []tls.Certificate{*clientCert},
Certificates: []tls.Certificate{*clientCert},
//nolint:gosec
InsecureSkipVerify: provider.Spec.InsecureTLSSkipVerify,
}

Expand Down

0 comments on commit 67caae8

Please sign in to comment.