-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserverless.ts
97 lines (93 loc) · 2.26 KB
/
serverless.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import type { AWS } from '@serverless/typescript'
import * as functions from './src/functions'
import people from './offline/dynamodb/migrations/people.json'
const PeopleTableSettings = people.Table
/**
* IAMCredential
* https://gist.githubusercontent.com/ServerlessBot/7618156b8671840a539f405dea2704c8/raw/a76e80cdbf2e9808352c3fec79a9625fa345a00d/IAMCredentials.json
*/
const serverlessConfiguration: AWS = {
service: 'star-wars-api',
useDotenv: true,
frameworkVersion: '2',
custom: {
webpack: {
webpackConfig: './webpack.config.js',
includeModules: true,
},
dynamodb: {
stages: [`\${self:provider.stage}`],
start: {
port: 8000,
inMemory: true,
migrate: true,
seed: true,
},
migration: {
dir: 'offline/dynamodb/migrations',
},
seed: {
dev: {
sources: [
{
table: `\${self:provider.environment.PEOPLE_TABLE}`,
sources: ['./offline/dynamodb/people.json'],
},
],
},
},
},
'serverless-offline': {
useChildProcesses: true,
},
},
plugins: [
'serverless-webpack',
'serverless-jest-plugin',
'serverless-dotenv-plugin',
'serverless-dynamodb-local',
'serverless-offline',
],
provider: {
name: 'aws',
runtime: 'nodejs12.x',
stage: 'dev',
region: 'us-east-1',
apiGateway: {
minimumCompressionSize: 1024,
shouldStartNameWithService: true,
},
environment: {
AWS_NODEJS_CONNECTION_REUSE_ENABLED: '1',
PEOPLE_TABLE: 'People',
// REGION: `\${opt:region, self:provider.region}`,
},
iamRoleStatements: [
{
Effect: 'Allow',
Action: [
'dynamodb:Query',
'dynamodb:Scan',
'dynamodb:GetItem',
'dynamodb:PutItem',
'dynamodb:UpdateTable',
],
Resource: '*',
},
],
lambdaHashingVersion: '20201221',
},
functions: { ...functions },
resources: {
Resources: {
PeopleTable: {
Type: 'AWS::DynamoDB::Table',
Properties: {
...PeopleTableSettings,
TableName: `\${self:provider.environment.PEOPLE_TABLE}`,
},
},
},
},
}
module.exports = serverlessConfiguration