Last active
March 5, 2019 01:17
-
-
Save uncgopher/d576c057f98c05a98aa4c3e218cdbbd0 to your computer and use it in GitHub Desktop.
Policy to grant public access to an AWS Lambda function.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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