Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does AWS CLI use SSL when uploading data into S3?

Does the normal AWS CLI use SSL by default when transferring data into S3 with the following command?

aws s3 cp source to destination
like image 899
Hello lad Avatar asked Jan 07 '16 12:01

Hello lad


2 Answers

By default, the AWS CLI uses SSL when communicating with AWS services.

AWS CLI command reference

like image 145
Thomas L. Avatar answered Oct 13 '22 14:10

Thomas L.


I just tried running:

> aws s3 ls

and wireshark reports the response protocol used is TLSv1.2. So, yes it seems to be using SSL even for simple commands like ls.

like image 41
Michael OConnor Avatar answered Oct 13 '22 15:10

Michael OConnor