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,693
  • 19
  • 27
Hello lad
  • 17,344
  • 46
  • 127
  • 200

2 Answers2

24

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

AWS CLI command reference

Thomas L.
  • 1,294
  • 9
  • 13
  • 5
    _"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
  • Latest link: https://awscli.amazonaws.com/v2/documentation/api/latest/reference/index.html – SagarM Aug 03 '22 at 08:03
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.