certbot/certbot-route53/examples/sample-aws-policy.json
Zach Shepherd 4146685104 route53: tweak source organization to match other packages (#4729)
This change re-organizes some ancillary files to more closely match
repository conventions.
2017-05-26 11:28:55 -07:00

25 lines
579 B
JSON

{
"Version": "2012-10-17",
"Id": "certbot-route53 sample policy",
"Statement": [
{
"Effect": "Allow",
"Action": [
"route53:ListHostedZones",
"route53:GetChange"
],
"Resource": [
"*"
]
},
{
"Effect" : "Allow",
"Action" : [
"route53:ChangeResourceRecordSets"
],
"Resource" : [
"arn:aws:route53:::hostedzone/YOURHOSTEDZONEID"
]
}
]
}