Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save johntbush/af5f8c175c7e0c8dbfa67f000e34f219 to your computer and use it in GitHub Desktop.
Save johntbush/af5f8c175c7e0c8dbfa67f000e34f219 to your computer and use it in GitHub Desktop.
aws cli setup
#install the cli
https://docs.aws.amazon.com/cli/latest/userguide/installing.html
## for windows
https://docs.aws.amazon.com/cli/latest/userguide/awscli-install-windows.html
# configure your keys
You should have received an access key and a secret key
from console type:
`aws configure`
enter your keys and default region: us-east-1
more information here:
https://docs.aws.amazon.com/cli/latest/userguide/cli-chap-getting-started.html
# validate you have s3 access
from a console, type:
`aws s3 ls s3://trax-spark-dev`
this should return a directory listing
for more info: https://docs.aws.amazon.com/cli/latest/reference/s3/
Please note there is production data in s3, be careful where you go and what you touch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment