-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Labels
enhancementNew feature or requestNew feature or request
Description
Is your feature request related to a problem? Please describe.
Some legacy systems (SAP) can have a valid SSL connection, however Go HTTP client fails with pre-delivery error and tls: handshake failure.
Describe the solution you'd like
Could there be a ENV variable that would alter the CipherSuites in the transport such as:
`
InsecureSkipVerify: true, //ENV variable for this boolean for self-signed certificates
CipherSuites: []uint16{ //ENV variable for a list of cipher suites
tls.TLS_RSA_WITH_AES_128_CBC_SHA,
tls.TLS_RSA_WITH_AES_256_CBC_SHA,
tls.TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256,
tls.TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384,
}
`
Describe alternatives you've considered
The only alternative for me is to build a custom Docker image with this change
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request
Type
Projects
Status
Backlog