Skip to content

Instantly share code, notes, and snippets.

@sc68cal
Created July 20, 2021 15:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sc68cal/9ceb6cfc9e85a44aaac5d8fb9b0b414e to your computer and use it in GitHub Desktop.
Save sc68cal/9ceb6cfc9e85a44aaac5d8fb9b0b414e to your computer and use it in GitHub Desktop.
Route53 policy
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"route53:ListResourceRecordSets",
"route53:ChangeResourceRecordSets"
],
"Resource": {
"arn:aws:route53:::hostedzone/<Your Route53 zone>"
}
},
{
"Effect": "Allow",
"Action": "apigateway:GET",
"Resource": "arn:aws:apigateway:*::/domainnames"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment