This file contains 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
STATUS: 200 |
This file contains 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
service: blog | |
provider: | |
name: aws | |
runtime: python2.7 | |
memorySize: 512 | |
environment: | |
STATUS: ${file(env.yml):STATUS} | |
iamRoleStatements: | |
- Effect: "Allow" | |
Action: | |
- "dynamodb:*" | |
Resource: | |
- "arn:aws:dynamodb:eu-west-1:xxxxxxxxxxxx:table/MyGlobalTable" | |
- "arn:aws:dynamodb:eu-central-1:xxxxxxxxxxxx:table/MyGlobalTable" | |
- Effect: "Allow" | |
Action: | |
- "logs:CreateLogGroup" | |
- "logs:CreateLogStream" | |
- "logs:PutLogEvents" | |
- "xray:PutTraceSegments" | |
- "xray:PutTelemetryRecords" | |
Resource: | |
- "*" | |
package: | |
include: | |
- vendored/** | |
exclude: | |
- .git/** | |
functions: | |
get_item: | |
handler: get.get_item | |
events: | |
- http: | |
path: get/{item_id} | |
method: GET | |
cors: true | |
create_item: | |
handler: post.create_item | |
events: | |
- http: | |
path: create | |
method: POST | |
cors: true | |
get_health: | |
handler: health.lambda_handler | |
events: | |
- http: | |
path: health | |
method: GET | |
cors: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
To install the requirements into the folder vendored, use the following command:
pip install -t vendored/ -r requirements.txt