Complete AWS IAM Reference

Michael Wittig – 18 Aug 2016

Writing IAM policies is hard. Following the principle of least privilege is even harder. To write a secure IAM policy you need to know:

  • What actions are needed?
  • Are resource-level permissions supported and on what levels?
  • Are conditions supported to restrict access?

That’s a lot of stuff and the information is spread all across the AWS documentation.

Example

For example, you want to allow the launch of new EC2 instances.

First you need to find out what action is needed. You can use the Complete AWS IAM Reference to search for launch in the description field. Now you know, that the action is called ec2:RunInstances .

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ec2:RunInstances",
"Resource": "*"
}
]
}

Now you can restrict access further. What options do you have? The Complete AWS IAM Reference shows you that you can use many resource-level permissions. For example, you can restrict that it is only allowed to use a certain AMI like Amazon Linux 2016.03.3 (64bit, gp2).

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ec2:RunInstances",
"Resource": [
"arn:aws:ec2:us-east-1::image/ami-6869aa05",
"arn:aws:ec2:us-east-1:$account-id:instance/*",
"arn:aws:ec2:us-east-1:$account-id:key-pair/*",
"arn:aws:ec2:us-east-1:$account-id:network-interface/*",
"arn:aws:ec2:us-east-1:$account-id:placement-group/*",
"arn:aws:ec2:us-east-1:$account-id:security-group/*",
"arn:aws:ec2:us-east-1::snapshot/*",
"arn:aws:ec2:us-east-1:$account-id:subnet/*",
"arn:aws:ec2:us-east-1:$account-id:volume/*"
]
}
]
}

You can take it even further. The Complete AWS IAM Reference shows that you can use a condition to restrict based on instance type. To save money in your dev account you may only allow t2.micro instances.

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ec2:RunInstances",
"Resource": [
"arn:aws:ec2:us-east-1:$account-id:instance/*"
],
"Condition": {
"StringEquals": {
"ec2:InstanceType": "t2.micro"
}
}
}, {
"Effect": "Allow",
"Action": "ec2:RunInstances",
"Resource": [
"arn:aws:ec2:us-east-1::image/ami-6869aa05",
"arn:aws:ec2:us-east-1:$account-id:key-pair/*",
"arn:aws:ec2:us-east-1:$account-id:network-interface/*",
"arn:aws:ec2:us-east-1:$account-id:placement-group/*",
"arn:aws:ec2:us-east-1:$account-id:security-group/*",
"arn:aws:ec2:us-east-1::snapshot/*",
"arn:aws:ec2:us-east-1:$account-id:subnet/*",
"arn:aws:ec2:us-east-1:$account-id:volume/*"
]
}
]
}

Keep in mind that different resource-level permissions support different service specific conditions. That’s why the following policy is not working:

{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": "ec2:RunInstances",
"Resource": [
"arn:aws:ec2:us-east-1::image/*",
"arn:aws:ec2:us-east-1:$account-id:instance/*"
"arn:aws:ec2:us-east-1:$account-id:key-pair/*",
"arn:aws:ec2:us-east-1:$account-id:network-interface/*",
"arn:aws:ec2:us-east-1:$account-id:placement-group/*",
"arn:aws:ec2:us-east-1:$account-id:security-group/*",
"arn:aws:ec2:us-east-1::snapshot/*",
"arn:aws:ec2:us-east-1:$account-id:subnet/*",
"arn:aws:ec2:us-east-1:$account-id:volume/*"
],
"Condition": {
"StringEquals": {
"ec2:InstanceType": "t2.micro"
}
}
}
]
}

Summary

For every AWS service, different actions are available. Depending on the action you can use resource-level permissions and sometimes also conditions.

Michael Wittig

Michael Wittig

I’ve been building on AWS since 2012 together with my brother Andreas. We are sharing our insights into all things AWS on cloudonaut and have written the book AWS in Action. Besides that, we’re currently working on bucketAV, HyperEnv for GitHub Actions, and marbot.

Here are the contact options for feedback and questions.