-
Log in to your Amazon AWS account that you created in the previous step.
-
navigate to the IAM console. You can get there by typing in "IAM" into the Search for Services bar, or by following this link
- Create a new User by navigating to the "Users" tab and clicking "Add users"
- Enter a Username of "admin" and check the box for Access Key credentials, then click Next
- navigate to "Attach existing policies directly", check the AdministratorAccess policy and click Next
-
Assign no tags - click Next
-
Review - click Create User
-
click Download .csv. This file will contain your Access key ID and Secret access key. IT IS IMPORTANT TO SAVE THESE. They will be used in the next step.
-
Set up your environment variables
-
Linux:
- Run the following in shell:
export AWS_ACCESS_KEY_ID="YOUR_ACCESS_KEY_HERE"
export AWS_SECRET_ACCESS_KEY="YOUR_SECRET_ACCESS_KEY_HERE"
-
Windows:
-
Push Win+R
-
type SystemPropertiesAdvanced into the box and push Enter
- click "Environment Variables" at the bottom
- Under "User varibales for {YOUR_USER}", click "New"
- Create an entry with the Variable Name of AWS_ACCESS_KEY_ID with a Variable Value of {YOUR_ACCESS_KEY}
-
Create another entry with the Variable Name of AWS_SECRET_ACCESS_KEY with a Variable Value of {YOUR_SECRET_ACCESS_KEY}
-
Create a final entry with the Variable Name of AWS_DEFAULT_REGION with a Variable Value of us-east-1
-
-