Forked from virtualhobbit/gist:494950f3de6c865fae5dd3e680d2ac6a
Created
July 17, 2020 17:00
-
-
Save Laxman-SM/6d51e9712011751b75ac7b7d6130ff9e to your computer and use it in GitHub Desktop.
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": [ | |
{ | |
"Effect": "Allow", | |
"Action": [ | |
"route53:ListHostedZones", | |
"route53:GetChange" | |
], | |
"Resource": [ | |
"*" | |
] | |
}, | |
{ | |
"Effect" : "Allow", | |
"Action" : [ | |
"route53:ChangeResourceRecordSets", | |
"route53:ListResourceRecordSets" | |
], | |
"Resource" : [ | |
"arn:aws:route53:::hostedzone/YOURHOSTEDZONEID" | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment