-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserverless.yaml
149 lines (141 loc) · 3.6 KB
/
serverless.yaml
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
service: sismo-vault
frameworkVersion: "3"
useDotenv: true
package:
individually: true
custom:
profiles:
dev: local
staging: staging-common
prod: prod-common
prod-beta: prod-common
staging-beta: staging-common
dev-beta: prod-common
provisionedConcurrency:
dev: 0
staging: 0
prod: 1
prod-beta: 1
dev-beta: 0
staging-beta: 0
DB:
dev:
tableNamePrefix: SismoVaultLocal
region: eu-west-1
readCapacity: 1
writeCapacity: 1
staging:
tableNamePrefix: SismoVaultStaging
region: eu-west-1
readCapacity: 1
writeCapacity: 1
prod:
tableNamePrefix: SismoVaultProd
region: eu-west-1
readCapacity: 3
writeCapacity: 3
prod-beta:
tableNamePrefix: SismoVaultProdBeta
region: eu-west-1
readCapacity: 3
writeCapacity: 3
dev-beta:
tableNamePrefix: SismoVaultDevBeta
region: eu-west-1
readCapacity: 1
writeCapacity: 1
staging-beta:
tableNamePrefix: SismoVaultStagingBeta
region: eu-west-1
readCapacity: 1
writeCapacity: 1
cors:
dev:
- http://localhost:3000
staging:
- "*"
prod:
- https://alpha.sismo.io
- https://app.sismo.io
- https://playground.sismo.io
- https://testnets.sismo.io
- https://staging.sismo.io
- https://staging.vault-beta.sismo.io
- https://vault-beta.sismo.io
prod-beta:
- "*"
staging-beta:
- "*"
dev-beta:
- "*"
webpack:
packager: "yarn" # Packager that will be used to package your external modules
includeModules: true # enable auto-packing of external modules
serverless-offline:
httpPort: 4000
dynamodb:
# If you only want to use DynamoDB Local in some stages, declare them here
start:
docker: true
port: 8000
inMemory: true
migrate: true
convertEmptyValues: true
provider:
name: aws
runtime: nodejs16.x
memorySize: 512 # optional, in MB, default is 1024
timeout: 29 # 29 seconds, default is 6
profile: ${self:custom.profiles.${sls:stage}}
region: eu-west-1
httpApi:
cors:
allowedOrigins: ${self:custom.cors.${sls:stage}}
environment:
TABLE_NAME_PREFIX: ${self:custom.DB.${sls:stage}.tableNamePrefix}
NODE_ENV: ${sls:stage}
LOG: true
iam:
role:
statements:
- Effect: Allow
Action:
- dynamodb:DescribeTable
- dynamodb:Query
- dynamodb:Scan
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:UpdateItem
- dynamodb:DeleteItem
Resource:
- "Fn::GetAtt": [vault, Arn]
functions:
getApi:
handler: src/vault/handlers/api-handler.get
events:
- httpApi:
path: /retrieve
method: GET
provisionedConcurrency: ${self:custom.provisionedConcurrency.${sls:stage}}
postApi:
handler: src/vault/handlers/api-handler.post
events:
- httpApi:
path: /add
method: POST
plugins:
- serverless-webpack
- serverless-dynamodb-local
- serverless-offline
resources:
Resources:
vault:
Type: AWS::DynamoDB::Table
DeletionPolicy: Retain
Properties:
TableName: ${self:custom.DB.${sls:stage}.tableNamePrefix}Vault
AttributeDefinitions: ${file(./src/vault/schema.db.json):AttributeDefinitions}
KeySchema: ${file(./src/vault/schema.db.json):KeySchema}
ProvisionedThroughput:
ReadCapacityUnits: ${self:custom.DB.${sls:stage}.readCapacity}
WriteCapacityUnits: ${self:custom.DB.${sls:stage}.writeCapacity}