Created
November 9, 2017 21:00
-
-
Save rafecolton/37e838cf4dec6bf1e43b9efe0b5b7192 to your computer and use it in GitHub Desktop.
Route53 IAM Policy for Caddy Verification
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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