Does AWS use CLI SSL when loading data into S3?

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

aws s3 cp source to destination 
+7
source share
2 answers

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

AWS CLI Command Reference

+19
source

I just tried to run:

 > aws s3 ls 

and wireshark reports that the TLSv1.2 response protocol was used. Yes, it looks like it uses SSL even for simple commands like ls.

0
source

Source: https://habr.com/ru/post/1240086/


All Articles