9

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

aws s3 cp source to destination
Aditya
  • 1,633
  • 19
  • 27
Hello lad
  • 15,446
  • 39
  • 114
  • 188

2 Answers2

24

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

AWS CLI command reference

Thomas L.
  • 1,244
  • 9
  • 12
  • 4
    _"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 – Felipe Alvarez Aug 16 '17 at 03:33
1

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.