You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our server setup we are using "Istio Side Car Injections" which take care of TLS throughout all our deployed applications. As a consequence, all our requests have to be made using HTTP and not HTTPS.
I am wondering, if there is a way to configure the aws-sdk to make request not to https://*.amazonaws.com but http://*.amazonaws.com:443. Notice that the protocol is http but the port is still 443.
I tried to use sslEnabled: false for each Amazon request as well as globally in the AWS object (using AWS.config.update [1]), but this seems not to solve my problem. I also noticed that you can specify a proxy server but I don't want to proxy my requests through a different server but simply change the protocol and port (and nothing else). I also experimented a bit with an http agent but could not come up with a solution.
This is my current error when I try to use sslEnabled: false only. The unknown protocol indicates that there are still requests using https.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs and link to relevant comments in this thread.
lockbot
locked as resolved and limited conversation to collaborators
Sep 28, 2019
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Labels
third-partyThis issue is related to third-party libraries or applications.
Hi!
In our server setup we are using "Istio Side Car Injections" which take care of TLS throughout all our deployed applications. As a consequence, all our requests have to be made using HTTP and not HTTPS.
I am wondering, if there is a way to configure the aws-sdk to make request not to
https://*.amazonaws.com
buthttp://*.amazonaws.com:443
. Notice that the protocol ishttp
but the port is still443
.I tried to use
sslEnabled: false
for each Amazon request as well as globally in the AWS object (using AWS.config.update [1]), but this seems not to solve my problem. I also noticed that you can specify a proxy server but I don't want to proxy my requests through a different server but simply change the protocol and port (and nothing else). I also experimented a bit with an http agent but could not come up with a solution.This is my current error when I try to use
sslEnabled: false
only. Theunknown protocol
indicates that there are still requests usinghttps
.I hope my question makes sense for you. Is there a simple way to solve this?
Greetings
René
Related Issues
#1640, #862,
Node and SDK Version
2.215.1
9.11.1
References
[1] AWS.config.update
The text was updated successfully, but these errors were encountered: