Getting started with AWS IAM

iam-logoRecently AWS announced that using IAM Roles with their EMR service will be mandatory as of June 30 this year. In this post I will show you how to setup the IAM basics when you are starting with AWS.
When you are starting from scratch with your new AWS account then you will see the following management console. Choose the option Identity and Access Management so we can get started creating users, roles, etc.:
Screenshot at May 09 10-49-43

The first thing I do is creating a friendly login url by changing the login link:
Screenshot at May 09 10-55-06
I make it something like:
Screenshot at May 09 10-56-16
Now the users I setup can use this link to login into AWS. What we see in our IAM Dashboard is that we have only completed 1 out of 5 security steps which are the best practices from AWS:
Screenshot at May 09 11-05-32
Actually step 1 is done automatically for the new account. The second bullet states we should setup a MFA (Multi Factor Authentication) for the root account. So lets do that. We need to pick the type of MFA device:
Screenshot at May 09 11-08-19
Since I want to use the Google Authenticator App on my IPhone I choose the ‘virtual MFA device’ and go to the next step:
Screenshot at May 09 11-12-07
Now I can scan the QR code with the App on my phone, fill in two sequential access codes and I am done. When I log out and log in again with my root account I also have to supply an access code generated with my Google Authenticator app on my phone.

The third bullet says that I should setup individual IAM users so I won’t need to login with my root account to make use of AWS. So lets create a user by clicking the new user button:
Screenshot at May 09 11-18-02
After entering a user name the following screen is shown in which we can see the access Id and the secret key for this user. Be aware to keep these things secret! I show them here because I will remove this user after this post but normally you would download the credentials and supply them only to the user that will use them (with SDK kits or API calls):
Screenshot at May 09 11-20-20
Now we have a user created but this user is not able to login to the console since it hasn’t setup a password yet. To do this we select the user and go to the user action and choose ‘Manage Password’:
Screenshot at May 09 12-23-47
Now we can choose to setup a password ourselves or have AWS create one. Also we can choose to have the user enter a new password after first login:
Screenshot at May 09 12-25-20
After generating the password we get a familiair screen again in which we can show and download the generated password which we then can supply to our user so he/she can login into the Management Console:
Screenshot at May 09 12-26-39
Now we have a user (not being the root user) that can login into the Management Console and is able to use SDK and API to access AWS resources. The last thing to do is that we have to give him permissions to our AWS resources. However instead of granting permissions to individual users it is best practice to create groups with certain permissions and assign the individual user to a group to grant permissions. So let’s proceed with the fourth bullet and continue with ‘Manage Groups’:
Screenshot at May 09 19-51-20
Create a new group and give it a name, like ‘developers’:
Screenshot at May 09 19-52-18
Next we can assign policies to it. There are a lot of policies to choose from as you can see. I simply use the ‘PowerUser Template’ here:
Screenshot at May 09 19-53-18
After reviewing and accepting the settings the group is created. Now select the group and select the group action ‘Add users to Group’:
Screenshot at May 09 19-54-37
We choose the user we just created so it belongs to the group. Now we have completed 4 of the 5 steps. The last step is about the Password Policy that is used. Just open the page and select the requirements that the password of your users should match:
Screenshot at May 09 20-11-10
I simply choose for a minimum length of 10. After this is set up we can see in the dashboard that all steps of our Security Status are turned green:
Screenshot at May 09 20-03-33
Of course there is a lot more to say about the security in combination with AWS but this should give you a headstart.

Advertisement

About Pascal Alma

Pascal is a senior IT consultant and has been working in IT since 1997. He is monitoring the latest development in new technologies (Mobile, Cloud, Big Data) closely and particularly interested in Java open source tool stacks, cloud related technologies like AWS and mobile development like building iOS apps with Swift. Specialties: Java/JEE/Spring Amazon AWS API/REST Big Data Continuous Delivery Swift/iOS
This entry was posted in AWS and tagged , , . Bookmark the permalink.