November 2017
Intermediate to advanced
298 pages
7h 10m
English
To use the API keys in the easiest way, you can export variables in your shell that will get picked up by the tooling; however, you will need to do this on every Terminal where you are working with AWS APIs:
$ export AWS_ACCESS_KEY_ID="AKIABCDEFABCDEF"$ export AWS_SECRET_ACCESS_KEY="123456789ABCDEF123456789ABCDEF"$ export AWS_REGION="us-west-1"
Alternatively, if you have the awscli tool installed (sudo apt-get install awscli), you can just run aws configure:
$ aws configureAWS Access Key ID [None]: AKIABCDEFABCEFAWS Secret Access Key [None]: 123456789ABCDEF123456789ABCDEFDefault region name [None]: us-west-1Default output format [None]: json
There are many other ways to set your credentials as well through things like ...
Read now
Unlock full access