Skip to content

Instantly share code, notes, and snippets.

@rafecolton
Created November 9, 2017 21:00
Show Gist options
  • Save rafecolton/37e838cf4dec6bf1e43b9efe0b5b7192 to your computer and use it in GitHub Desktop.
Save rafecolton/37e838cf4dec6bf1e43b9efe0b5b7192 to your computer and use it in GitHub Desktop.
Route53 IAM Policy for Caddy Verification
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "Stmt1510258901000",
"Effect": "Allow",
"Action": [
"route53:ChangeResourceRecordSets",
"route53:GetHostedZone",
"route53:ListResourceRecordSets"
],
"Resource": [
"arn:aws:route53:::hostedzone/<hosted-zone-ID>"
]
},
{
"Sid": "Stmt1510258901001",
"Effect": "Allow",
"Action": [
"route53:GetChange"
],
"Resource": [
"*"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment