Creating IAM Users & Groups (Step-by-Step)
Step-1: Login with "AWS Management Console"
Step-2: Search for service 'IAM'
Step-3: Then your IAM dashboard screen will appear as below. IAM is a global service you can see on Right Top corner.
Create IAM User
Step-1: First, you have to login with 'IAM Management Console' with root user
Step-2: Search IAM
Step-3: In left pane, you will see the 'User' tab
Step-4: Click on 'user' and create the user make a note in somewhere to make sure you are not going to forget user name.
Step-5: Once the user get ready.
Next Step,
Step-6: In left pane, click on Groups
Step-7: Provide proper name to group which is going to best suit as per your requirement.
Step-8: And, attach the user in particular group.
Note:
- During creation of User in last step GUI will show to download key option.
- Please make sure download the key for future user
- Because In this key you can get the User Info along with Credential which will help to connect with new user.
- Now open a new Window and try to connect if you are able to login it means your have created proper user with correct Group definition.
Definition of Administrator Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow", // Allow every one
"Action": "*", // * means it's allow all the action
"Resource": "*" // Any resource can perform all the action belong to this policy
}
]
}
Note : If you go to policy Summery then currently AWS is offer 335 of 335 services
- You Can Create your OWN policy as well .
- Make sure you have to delete all additional groups, policies which is not in use.
No comments:
Post a Comment