IAM Roles ¶
What are AWS IAM Roles?
For the Leverage AWS Reference Architecture we heavily depend on AWS IAM roles, which is a standalone IAM entity that:
- Allows you to attach IAM policies to it,
- Specify which other IAM entities to trust, and then
- Those other IAM entities can assume the IAM role to be temporarily get access to the permissions in those IAM policies.
The two most common use cases for IAM roles are
- Service roles: Whereas an IAM user allows a human being to access AWS resources, one of the most common use cases for an IAM role is to allow a service—e.g., one of your applications, a CI server, or an AWS service—to access specific resources in your AWS account. For example, you could create an IAM role that gives access to a specific S3 bucket and allow that role to be assumed by one of your EC2 instances or Lambda functions. The code running on that AWS compute service will then be able to access that S3 bucket (or any other service you granted through this IAM roles) without you having to manually copy AWS credentials (i.e., access keys) onto that instance.
- Cross account access: Allow to grant an IAM entity in one AWS account access to specific resources in another AWS account. For example, if you have an IAM user in AWS account A, then by default, that IAM user cannot access anything in AWS account B. However, you could create an IAM role in account B that gives access to a specific S3 bucket (or any necessary AWS services) in AWS account B and allow that role to be assumed by an IAM user in account A. That IAM user will then be able to access the contents of the S3 bucket by assuming the IAM role in account B. This ability to assume IAM roles across different AWS accounts is the critical glue that truly makes a multi AWS account structure possible.
How IAM roles work? ¶
Main IAM Roles related entities
IAM policies ¶
Just as you can attach IAM policies to an IAM user and IAM group, you can attach IAM policies to an IAM role.
Trust policy ¶
You must define a trust policy for each IAM role, which is a JSON document (very similar to an IAM policy) that specifies who can assume this IAM role. For example, we present below a trust policy that allows this IAM role to be assumed by an IAM user named John in AWS account 111111111111:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Principal": {"AWS": "arn:aws:iam::111111111111:user/John"}
}
]
}
DevOps
in account B ID 222222222222, then you need
to configure permissions in both accounts:
1. In account 222222222222, the DevOps
IAM role must have a trust policy that gives sts:AssumeRole
permissions to
AWS account A ID 111111111111 (as shown above).
2. 2nd, in account A 111111111111, you also need to attach an IAM policy to John’s IAM user that allows him to assume
the DevOps
IAM role, which might look like this:
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "sts:AssumeRole",
"Resource": "arn:aws:iam::222222222222:role/DevOps"
}
]
}
Assuming an AWS IAM role ¶
How does it work?
IAM roles do not have a user name, password, or permanent access keys. To use an IAM role, you must assume it by
making an AssumeRole
API call (vía SDKs API,
CLI or
Web Console, which will
return temporary access keys you can use in follow-up API calls to authenticate as the IAM role. The temporary
access keys will be valid for 1-12 hours (depending on your current validity expiration config), after which you
must call AssumeRole
again to fetch new temporary keys. Note that to make the AssumeRole
API call, you must
first authenticate to AWS using some other mechanism.
For example, for an IAM user to assume an IAM role, the workflow looks like this:
Basic AssumeRole workflow
- Authenticate using the IAM user’s permanent AWS access keys
- Make the AssumeRole API call
- AWS sends back temporary access keys
- You authenticate using those temporary access keys
- Now all of your subsequent API calls will be on behalf of the assumed IAM role, with access to whatever permissions are attached to that role
IAM roles and AWS services
Most AWS services have native support built-in for assuming IAM roles.
For example:
- You can associate an IAM role directly with an EC2 instance (instance profile), and that instance will automatically assume the IAM role every few hours, making the temporary credentials available in EC2 instance metadata.
- Just about every AWS CLI and SDK tool knows how to read and periodically update temporary credentials from EC2 instance metadata, so in practice, as soon as you attach an IAM role to an EC2 instance, any code running on that EC2 instance can automatically make API calls on behalf of that IAM role, with whatever permissions are attached to that role. This allows you to give code on your EC2 instances IAM permissions without having to manually figure out how to copy credentials (access keys) onto that instance.
- The same strategy works with many other AWS services: e.g., you use IAM roles as a secure way to give your Lambda functions, ECS services, Step Functions, and many other AWS services permissions to access specific resources in your AWS account.
Read more ¶
AWS reference links
Consider the following AWS official links as reference: