Created
May 3, 2018 12:08
-
-
Save adhorn/d656dea8ddd140ee222f1b8a889157b3 to your computer and use it in GitHub Desktop.
Serverless framework to support deploy Lambda Functions in VPC
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 | |
lambdaExecSecurityGroups: ["sg-xxxxxxx"] | |
subnets: ["subnet-xxxxxxx"] |
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 | |
lambdaExecSecurityGroups: ["sg-xxxxxxx"] | |
subnets: ["subnet-xxxxxx"] |
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 | |
vpc: | |
securityGroupIds: | |
${file(env_${opt:region}.yml):lambdaExecSecurityGroups} | |
subnetIds: | |
${file(env_${opt:region}.yml):subnets} | |
runtime: python2.7 | |
memorySize: 512 | |
environment: | |
STATUS: ${file(env.yml):STATUS} | |
iamRoleStatements: | |
- Effect: "Allow" | |
Action: | |
- "dynamodb:*" | |
Resource: | |
- "arn:aws:dynamodb:${opt:region}:xxxxxxxxxxxxx: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