tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Cloud Platforms > Amazon AWS > How to configure AWS CLI

How to configure AWS CLI

Author: Venkata Sudhakar

The below example shows how to configure AWS CLI with your User account Access key ID and Secret Access Key. As a first step create a User account in Identity and Access Management (IAM) and associate required Permissions. Next go to 'Security Credentials' tab and generate credentials to be used with AWS CLI.

1C:\>aws configure
2AWS Access Key ID [None]: AKIAQUGMR2BETHECODER
3AWS Secret Access Key [None]: 2Iyq867AadPmoGfexqaWVbethecoder
4Default region name [None]: us-east-1
5Default output format [None]: json

AWS CLI stores above configuration in two default configuration files ~/.aws/credentials and ~/.aws/config as shown below,

~/.aws/credentials

1[default]
2aws_access_key_id = AKIAQUGMR2BETHECODER
3aws_secret_access_key = 2Iyq867AadPmoGfexqaWVbethecoder

~/.aws/config

1[default]
2region = us-east-1
3output = json

 
  


  
bl  br