GithubHelp home page GithubHelp logo

Comments (3)

TooTallNate avatar TooTallNate commented on August 21, 2024 4

Try doing:

var opts = url.parse(process.env.HTTPS_PROXY);
opts.rejectUnauthorized = true;
opts.keepAlive = true;                // workaround part i.
opts.secureProtocol = 'TLSv1_method'; // workaround part ii.
opts.ciphers = 'ALL';                  // workaround part ii.

awsConfig.httpOptions.agent = new HttpsProxyAgent(opts);

from proxy-agents.

dvonlehman avatar dvonlehman commented on August 21, 2024

Thanks Nate for the quick response. That appears to be doing the trick. I've incorporated it into my little helper module: https://www.npmjs.com/package/aws-config

from proxy-agents.

unni1 avatar unni1 commented on August 21, 2024

Sorry for this newbie question. I googled a lot, but couldn't find an answer, may be I was not using the right keywords.

I was also facing the same issue and AWS support advised us to use https.agent. But I ran into some trouble with the company proxy. Finally, with pac-proxy-agent, it worked with the below code sample:

const pacProxyAgent = require('pac-proxy-agent'); 

const pacProxyUri = 'pac+http://proxy.com/proxy.pac'

var ec2Agent = new pacProxyAgent({
    uri: pacProxyUri,
    ciphers: "ALL",
    secureProtocol: "TLSv1_method"
});

var ec2 = new AWS.EC2({
    httpOptions: {
        agent: ec2Agent,
    },
    region: 'us-east-1'
}); 

I don't see any errors in the node.js log any more, but I am not sure if it is actually obeying the
secureProtocol: "TLSv1_method"
part.

I have this confusion because I randomly changed it to some other string, say "ABCv1", and it still didn't give me any errors. In Wireshark, I saw all the ClientHello messages to AWS where TLSv1.2, but I don't know if I was looking at the right place.

If I want to force TLSv1, is the above code sample correct?

from proxy-agents.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.