Does AWS CLI use SSL when uploading data into S3?

10,061

Solution 1

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

AWS CLI command reference

Solution 2

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.

Share:
10,061
Hello lad
Author by

Hello lad

Updated on July 22, 2022

Comments

  • Hello lad
    Hello lad over 1 year

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

    aws s3 cp source to destination
    
  • Felipe Alvarez
    Felipe Alvarez over 6 years
    "By default, the AWS CLI uses SSL when communicating with AWS services. For each SSL connection, the AWS CLI will verify SSL certificates." from your link