Innovate anywhere, anytime withruncode.io Your cloud-based dev studio.
Amazon Web Services

Amazon AWS IAM Roles and Policies

2022-07-19

Creating an IAM User:

  • Login to your root account and then Click on your Username on the Top Right Corner. Select Security Credentials.
  • Click on Users Option on Left Hand Menu of the Dash Board Page. see here to see the Dashboard
  • Click on Create User button
  • Enter the Usernames of accounts to generate and click on Create.
  •  you will be offered to Download the REST API keys.
  • Download it or save them, Note that REST API Keys are only generated only once. If Lost you may have to reset API Keys again.

Generating Password For the User:

  • Select The user in Users Page and click on User Actions and select Manage Password.
  • You will be offered Two options
  • Automatic Password with Change on Login checkbox.
  • Custom Password.
  • After Setting Password, Click on Apply.
aws-mp-banner

Policies:

Policies play a VITAL Role. It is Authorization Part of IAM User. AWS Provides a set of its own policies which restricts or provide access to the User. Most of those Policies are either full Access on Service or Read only Permissions on  Service. None of those restrict a User to have access only to specific sections of the service.(Like only specific Buckets in S3 or few Instances in EC2). Here we can Use Custom Policies. Now we are going to see an example on restricting a user to only a specific Bucket in S3.

Steps to Create a Custom Policy:

  • Select policies in DashBoard Menu
  • Click on Create Policy
  • select type of Policy. here you can select either copy from amazon policies and customize them(Copy an AWS Managed Policy) or create your policy from Amazon options(using Policy Generator) or create a fully custom Policy(Create Your Own Policy).
  • Select Create Your Own Policy and copy paste this JSON.
{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": "s3:*",
            "Resource": [
                "arn:aws:s3:::dinesh_my_bucket",
                "arn:aws:s3:::dinesh_my_bucket/*"
            ]
        },
        {
            "Effect": "Allow",
            "Action": "s3:ListAllMyBuckets",
            "Resource": "arn:aws:s3:::*"
        }
    ]
}

Now Validate and click on save.

Here First Part of JSON gives full access permissions on bucket "micropyramid" to users under the policy, Second Part where it says List all Buckets gives access over Console view of S3 to the user.

Now you can assign users this policy, or  generate a Role with Custom Permissions and assign that role to the User

For more on S3 Policies click here