certbot/sample-aws-policy.json
2016-10-04 14:24:09 +01:00

36 lines
856 B
JSON

{
"Version": "2012-10-17",
"Id": "certbot-route53 sample policy",
"Statement": [
{
"Effect": "Allow",
"Action": [
"iam:UploadServerCertificate",
"iam:UpdateServerCertificate",
"iam:DeleteServerCertificate"
],
"Resource": [
"*"
]
},
{
"Effect": "Allow",
"Action": [
"route53:List*",
"route53:Get*",
],
"Resource": [
"*"
]
},
{
"Effect" : "Allow",
"Action" : [
"route53:ChangeResourceRecordSets"
],
"Resource" : [
"arn:aws:route53:::hostedzone/YOURHOSTEDZONEID"
]
}
]
}