Skip to content

AWS Services

Minimum AWS IAM Policy

Below are examples of minimum IAM policies for Route53 and SES

Route53

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "route53policy1",
      "Effect": "Allow",
      "Action": "route53:ChangeResourceRecordSets",
      "Resource": "arn:aws:route53:::hostedzone/*"
    },
    {
      "Sid": "route53policy2",
      "Effect": "Allow",
      "Action": "route53:TestDNSAnswer",
      "Resource": "*"
    }
  ]
}

SES

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": "ses:SendEmail",
      "Resource": "*",
      "Condition": {
        "ForAllValues:StringLike": {
          "ses:Recipients": [
            "you@example.org"
          ]
        }
      }
    }
  ]
}

Last update: 2023-02-12 18:58:40
Created: 2021-11-17 20:45:49