AWS Permissions

AMI Access Manager has a small set of permissions required to run effectively. These include the following:

Here is a sample AWS policy that includes the permissions necessary to run this program. Note that you can be more restrictive with the Resource section if you choose.

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "ec2:DescribeImages",
                "ec2:DescribeImageAttribute",
                "ec2:ModifyImageAttribute",
                "sts:GetCallerIdentity"
            ],
            "Resource": "*"
        }
    ]
}