DEV Community

Cover image for Create AWS IAM User with Programmatic Access
Manish R Warang
Manish R Warang

Posted on • Originally published at blog.g33kzone.com

Create AWS IAM User with Programmatic Access

This post helps creates AWS IAM Users with programmatic access. Once the setup is configured, a pair of Access Key ID & Secret Key will be available. This set of keys will eventually help us configure AWS CLI ver 2.0.

The AWS Command Line Interface (AWS CLI) is an open-source tool that enables you to interact with AWS services using commands in your command-line shell. With minimal configuration, the AWS CLI enables you to start running commands that implement functionality equivalent to that provided by the browser-based AWS Management Console from the command prompt in your terminal program. The AWS CLI also provides direct access to the public APIs of AWS services.

Create IAM User

Login to AWS Console and navigate to the IAM service.

Screenshot 2021-07-01 at 7.06.06 PM.png

On the IAM Dashboard, Select the Users section and click the Add User button.

Screenshot 2021-07-01 at 7.08.35 PM.png

Enter an appropriate user name (for this post, I have created a user with the name demo-user) and enable Programmatic Access. Click the Next: Permissions button.

Screenshot 2021-07-01 at 7.14.05 PM.png

Now we need to provide a set of relevant permissions to this new user. These permissions will provide the capability to perform certain actions in AWS(e.g. Create EC2 instance, Create IAM Roles / Policies, or even Admin privileges)

For the sake of this demo, we will grant EC2 Full Access to our user demo-user. Select Attach existing policies directly and provide a filter as EC2. Select Policy name AmazonEC2FullAccess from the list.

Screenshot 2021-07-01 at 7.25.38 PM.png

Click Next: Tags button. For this demo, we will skip this section. Click the Next: Review button.

Screenshot 2021-07-01 at 7.29.18 PM.png

Validate the details and then click the Create user button.

Copy both Access key ID and Secret access key. As the secret key will visible only once, it is advisable to download the .csv file with the credentials.

Screenshot 2021-07-01 at 7.32.50 PM.png

Configure AWS CLI ver 2.0

Based upon the OS, there are different ways to install AWS CLI.

Post-installation, let us fire the following command on the CLI. This will set up an AWS default profile.

aws configure
Enter fullscreen mode Exit fullscreen mode

We can also create a specific profile.

aws configure --profile <profie-name>
Enter fullscreen mode Exit fullscreen mode

Screenshot 2021-07-01 at 8.19.42 PM.png

Top comments (0)