Skip to content

Latest commit

 

History

History
59 lines (30 loc) · 1.8 KB

AWS_Account_Setup.md

File metadata and controls

59 lines (30 loc) · 1.8 KB
  1. Log in to your Amazon AWS account that you created in the previous step.

  2. navigate to the IAM console. You can get there by typing in "IAM" into the Search for Services bar, or by following this link

  1. Create a new User by navigating to the "Users" tab and clicking "Add users"

  1. Enter a Username of "admin" and check the box for Access Key credentials, then click Next

  1. navigate to "Attach existing policies directly", check the AdministratorAccess policy and click Next

  1. Assign no tags - click Next

  2. Review - click Create User

  3. 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.

  1. Set up your environment variables

    • Linux:

      1. 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:

      1. Push Win+R

      2. type SystemPropertiesAdvanced into the box and push Enter

      1. click "Environment Variables" at the bottom

      1. Under "User varibales for {YOUR_USER}", click "New"

      1. Create an entry with the Variable Name of AWS_ACCESS_KEY_ID with a Variable Value of {YOUR_ACCESS_KEY}

      1. Create another entry with the Variable Name of AWS_SECRET_ACCESS_KEY with a Variable Value of {YOUR_SECRET_ACCESS_KEY}

      2. Create a final entry with the Variable Name of AWS_DEFAULT_REGION with a Variable Value of us-east-1