Skip to content

Instantly share code, notes, and snippets.

@nmcclain
Created January 19, 2014 19:35
Show Gist options
  • Save nmcclain/8509905 to your computer and use it in GitHub Desktop.
Save nmcclain/8509905 to your computer and use it in GitHub Desktop.
Minimal R53 permissions needed to support DDNS updates, ala: https://gist.github.com/nmcclain/8509874
{
"Statement":[
{
"Action":[
"route53:ChangeResourceRecordSets",
"route53:GetHostedZone",
"route53:ListResourceRecordSets"
],
"Effect":"Allow",
"Resource":[
"arn:aws:route53:::hostedzone/ZONEIDGOESHERE"
]
},
{
"Action":[
"route53:GetChange"
],
"Effect":"Allow",
"Resource":[
"arn:aws:route53:::change/*"
]
},
{
"Action":[
"route53:ListHostedZones"
],
"Effect":"Allow",
"Resource":[
"*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment