Skip to main content

0.1 AWS Setup

Youtube ๐Ÿ“บ

In this section we'll look into how to setup our AWS account and what is the information needed to move ahead with the course. Ensure you've read through the Disclaimer and How To Use this Course

๐Ÿ”’ AWS Account Loginโ€‹

  • Creating an AWS account using an email whose provider supports Email aliases is strongly recommended.
  • Log into your AWS account and visit the IAM Section.

AWS IAM

  • Click on User and create a user called admin

Admin User

Why Create a User ?

As a Security best practice, we must not use Root User access for any actions. Lock Away Root User.

  • Assign the User Administrator privileges as shown below. Click Next. Review and Create User.

๐Ÿ”‘ AWS Access Keysโ€‹

  • Visit the IAM Page and visit the admin user page as shown below

  • Click on the admin user and Click on Create Access Keys

  • Select for `CLI (Command Line Interface) and generate the keys

โœจ Configure AWS Admin Profileโ€‹

  • Let's configure the admin account access keys in your local computer. Ensure you have AWS CLI Installed
aws configure --profile admin
AWS Access Key ID [None]: <Enter-Access-key>
AWS Secret Access Key [None]: <Enter-Secret-Access-Key>
Default region name [None]: us-east-1
Default output format [None]: json
  • Let's check if they are working
export AWS_PROFILE=admin
aws sts get-caller-identity