Created
May 18, 2018 16:28
-
-
Save johntbush/af5f8c175c7e0c8dbfa67f000e34f219 to your computer and use it in GitHub Desktop.
aws cli setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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