Skip to content

Instantly share code, notes, and snippets.

@ip-2014
Forked from dfox/route53-user-policy.json
Created October 27, 2016 15:56
Show Gist options
  • Select an option

  • Save ip-2014/2bfe325dff7c8dd916393b532d5af38f to your computer and use it in GitHub Desktop.

Select an option

Save ip-2014/2bfe325dff7c8dd916393b532d5af38f to your computer and use it in GitHub Desktop.
An IAM policy for Amazon AWS to allow limited access to Route 53
{
"Statement":[
{
"Action":[
"route53:ChangeResourceRecordSets",
"route53:GetHostedZone",
"route53:ListResourceRecordSets"
],
"Effect":"Allow",
"Resource":[
"arn:aws:route53:::hostedzone/<Your zone ID>"
]
},
{
"Action":[
"route53:ListHostedZones"
],
"Effect":"Allow",
"Resource":[
"*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment