Skip to content

Instantly share code, notes, and snippets.

@uncgopher
Last active March 5, 2019 01:17
Show Gist options
  • Save uncgopher/d576c057f98c05a98aa4c3e218cdbbd0 to your computer and use it in GitHub Desktop.
Save uncgopher/d576c057f98c05a98aa4c3e218cdbbd0 to your computer and use it in GitHub Desktop.
Policy to grant public access to an AWS Lambda function.
{
"Version": "2012-10-17",
"Statement": [
{
"Effect": "Allow",
"Principal": "*",
"Action": [
"execute-api:GET",
"execute-api:POST",
"execute-api:Invoke"
],
"Resource": "arn:aws:execute-api:*"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment