Skip to content

Instantly share code, notes, and snippets.

@jlamoree
Created May 13, 2021 17:44
Show Gist options
  • Save jlamoree/212c7f2b7f1ac4f72bc40d2d95733bbb to your computer and use it in GitHub Desktop.
Save jlamoree/212c7f2b7f1ac4f72bc40d2d95733bbb to your computer and use it in GitHub Desktop.
AWS IAM Policy for ACME User
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Action": [
"route53:GetHostedZone",
"route53:ListHostedZones",
"route53:ListHostedZonesByName",
"route53:GetHostedZoneCount",
"route53:ChangeResourceRecordSets",
"route53:ListResourceRecordSets"
],
"Resource": "*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment