Query on upload to s3 bucket NodeJS

0

Hello, I have one doubt about the s3 bucket; while uploading data to the s3 bucket using the upload function from aws-sdk in NodeJS, is data uploaded securely using TLS?

asked 2 years ago400 views
1 Answer
1
Accepted Answer

Yes, TLS is expected to be used.

The following AWS official documentation and the AWS official blog state that TLS is used by default in the AWS SDK for JavaScript. [1] [2]

[1] Enforcing a minimum TLS version - AWS SDK for JavaScript
https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/enforcing-tls.html
----- Excerpt -----
AWS SDK for JavaScript v3 automatically negotiates the highest supported TLS version for a given AWS service endpoint.
----- Excerpt -----

[2] TLS 1.2 to become the minimum TLS protocol level for all AWS API endpoints | AWS Security Blog
https://aws.amazon.com/jp/blogs/security/tls-1-2-required-for-aws-endpoints/
----- Excerpt -----
If you are one of the more than 95% of AWS customers who are already using TLS 1.2 or later, you will not be impacted by this change. If you are already using TLS 1.2 or later if your client software application was built after 2014 using an AWS Software Development Kit (AWS SDK), AWS Command Line Interface (AWS CLI), Java Development Kit (JDK) 8 or later, or another modern development environment.
----- Excerpt -----

I hope the above is helpful.

profile picture
mn87
answered 2 years ago
profile pictureAWS
EXPERT
Chris_G
reviewed 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions