Skip to content

Instantly share code, notes, and snippets.

@frankzickert
Created May 3, 2019 12:47
Show Gist options
  • Save frankzickert/4be5492c47dc52e1ff83fdc32a5b7512 to your computer and use it in GitHub Desktop.
Save frankzickert/4be5492c47dc52e1ff83fdc32a5b7512 to your computer and use it in GitHub Desktop.
The AWS IAM policy required of Infrastructure-Components
{
"Statement": [
{
"Action": [
"s3:*",
"apigateway:*",
"lambda:*",
"logs:*",
"cloudformation:*",
"cloudfront:*",
"acm:ListCertificates",
"route53:ListHostedZones",
"route53:ListResourceRecordSets",
"route53:ChangeResourceRecordSets",
"route53:GetChange",
"iam:CreateRole",
"iam:DeleteRole",
"iam:DeleteRolePolicy",
"iam:GetRole",
"iam:PassRole",
"iam:PutRolePolicy",
"execute-api:ManageConnections",
"cloudfront:UpdateDistribution"
],
"Effect": "Allow",
"Resource": "*"
}
],
"Version": "2012-10-17"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment