Module 3: IAM Users Assignment
Problem Statement: You work for XYZ Corporation. To maintain the security of the AWS account and the resources you have been asked to implement a solution that can help easily recognize and monitor the different users.
Tasks To Be Performed:
- Create 4 IAM users named
Dev1
,Dev2
,Test1
, andTest2
.- Create 2 groups named
DevTeam
andOpsTeam
.- Add Dev1 and Dev2 to the DevTeam.
- Add Dev1, Test1 and Test2 to the OpsTeam.
Using AWS Management Console:
- Creating 4 IAM Users:
- First, I logged into the AWS Management Console and navigated to
Services > IAM > Users
. - Then, I clicked on the
Create user
button to create four new users. I named themDev1
,Dev2
,Test1
, andTest2
respectively.
- During this process permissions are configured for each user as needed.
- Creating 2 IAM Groups:
-
Next, I went to the IAM Dashboard and clicked on
Services > IAM > User groups
. -
I clicked on
Create Group
and made two new groups namedDevTeam
andOpsTeam.
During this step we can also add users -
I also attached the necessary policies to these groups.
- Adding Dev1 and Dev2 to the DevTeam:
- I clicked on the
DevTeam
group and then selectedAdd users
to Group.” - I chose
Dev1
andDev2
from the list and added them to this group.
- Adding Dev1, Test1, and Test2 to the OpsTeam:
- I repeated the same process for the
OpsTeam
group. - I clicked on
Add users
and addedDev1
,Test1
, andTest2
to this group.