-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
206 lines (202 loc) · 5.84 KB
/
template.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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
AWSTemplateFormatVersion: 2010-09-09
Description: >-
aws-rekognition-backend
Transform:
- AWS::Serverless-2016-10-31
Parameters:
ApiRateLimitRequest:
Type: Number
Default: 50
Description: Maximum number of requests that can be made per unit of time
ApiBurstLimitRequest:
Type: Number
Default: 100
Description: It sets a higher limit on the number of requests that can be made within a short period of time, allowing for occasional spikes in traffic
ApiMonthLimitRequest:
Type: Number
Default: 100000
Description: Name of an API key
ApiToken:
Type: String
Description: API token used for protect endpoints (only for a short time, move to API Gateway auth).
NoEcho: true
Environment:
Type: String
AllowedValues:
- development
- production
- staging
Default: development
Resources:
Api:
Type: AWS::Serverless::Api
Properties:
StageName: !Sub App-${Environment}
Auth:
ApiKeyRequired: false
UsagePlan:
CreateUsagePlan: PER_API
Description: Usage plan for this API
Quota:
Limit: !Ref ApiMonthLimitRequest
Period: MONTH
Throttle:
BurstLimit: !Ref ApiBurstLimitRequest
RateLimit: !Ref ApiRateLimitRequest
checkSession:
Type: AWS::Serverless::Function
Properties:
Handler: src/handlers/check-liveness-session.handler
Runtime: nodejs18.x
Architectures:
- x86_64
MemorySize: 128
Timeout: 100
Role: !GetAtt SessionFunctionRole.Arn
Policies:
- AWSLambdaBasicExecutionRole
Environment:
Variables:
BUCKET_NAME: !Ref S3SessionBucket
API_TOKEN: !Ref ApiToken
Events:
Api:
Type: Api
Properties:
Path: /session/{sessionId}
RestApiId: !Ref Api
Method: GET
initSession:
Type: AWS::Serverless::Function
Properties:
Handler: src/handlers/init-liveness-session.handler
Runtime: nodejs18.x
Architectures:
- x86_64
MemorySize: 128
Timeout: 100
Role: !GetAtt SessionFunctionRole.Arn
Policies:
- AWSLambdaBasicExecutionRole
Environment:
Variables:
BUCKET_NAME: !Ref S3SessionBucket
API_TOKEN: !Ref ApiToken
Events:
Api:
Type: Api
Properties:
Path: /session
RestApiId: !Ref Api
Method: POST
faceComparison:
Type: AWS::Serverless::Function
Properties:
Handler: src/handlers/face-comparison.handler
Runtime: nodejs18.x
Architectures:
- x86_64
MemorySize: 128
Timeout: 100
Role: !GetAtt FaceComparisonFunctionRole.Arn
Policies:
- AWSLambdaBasicExecutionRole
Environment:
Variables:
BUCKET_NAME: !Ref S3FaceComparisonBucket
API_TOKEN: !Ref ApiToken
Events:
Api:
Type: Api
Properties:
RestApiId: !Ref Api
Path: /compare
Method: POST
S3SessionBucket:
Type: 'AWS::S3::Bucket'
S3FaceComparisonBucket:
Type: 'AWS::S3::Bucket'
SessionFunctionRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action: 'sts:AssumeRole'
Policies:
- PolicyName: s3-access-policy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 's3:GetObject'
- 's3:PutObject'
Resource: !Join ['', ['arn:aws:s3:::', !Ref S3SessionBucket, '/*']]
- PolicyName: rekognition-policy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'rekognition:*'
Resource: '*'
FaceComparisonFunctionRole:
Type: 'AWS::IAM::Role'
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action: 'sts:AssumeRole'
Policies:
- PolicyName: s3-access-policy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 's3:GetObject'
- 's3:PutObject'
Resource: !Join ['', ['arn:aws:s3:::', !Ref S3FaceComparisonBucket, '/*']]
- PolicyName: rekognition-policy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- 'rekognition:CompareFaces'
Resource: '*'
ApplicationResourceGroup:
Type: AWS::ResourceGroups::Group
Properties:
Name:
Fn::Sub: ApplicationInsights-SAM-${AWS::StackName}
ResourceQuery:
Type: CLOUDFORMATION_STACK_1_0
ApplicationInsightsMonitoring:
Type: AWS::ApplicationInsights::Application
Properties:
ResourceGroupName:
Ref: ApplicationResourceGroup
AutoConfigurationEnabled: 'true'
Outputs:
WebEndpoint:
Description: API Gateway endpoint URL for staging
Value: !Sub "https://${Api}.execute-api.${AWS::Region}.amazonaws.com/App-${Environment}/"
Globals:
Function:
Tracing: Active
Api:
TracingEnabled: true
Cors:
AllowMethods: "'GET,POST,OPTIONS'"
AllowHeaders: "'*'"
AllowOrigin: "'*'"