Skip to content

Instantly share code, notes, and snippets.

@mitcdh
Last active September 19, 2016 00:39
Show Gist options
  • Save mitcdh/d5b8591717abde3fe7e59e340f64af1f to your computer and use it in GitHub Desktop.
Save mitcdh/d5b8591717abde3fe7e59e340f64af1f to your computer and use it in GitHub Desktop.
Route53 Automated DNS Service Inline Policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"route53:GetChange",
"route53:ListHostedZones",
"route53:ListHostedZonesByName",
"route53:GetHostedZoneCount"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"route53:GetHostedZone",
"route53:ListResourceRecordSets",
"route53:ChangeResourceRecordSets"
],
"Resource": [
"arn:aws:route53:::hostedzone/*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment