mirror of
https://github.com/certbot/certbot.git
synced 2026-05-28 04:34:11 -04:00
This change re-organizes some ancillary files to more closely match repository conventions.
25 lines
579 B
JSON
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"
|
|
]
|
|
}
|
|
]
|
|
}
|