-
Notifications
You must be signed in to change notification settings - Fork 18
/
wallboard-cfn.yaml
318 lines (297 loc) · 10.2 KB
/
wallboard-cfn.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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
AWSTemplateFormatVersion: 2010-09-09
#
# Copyright 2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of this
# software and associated documentation files (the "Software"), to deal in the Software
# without restriction, including without limitation the rights to use, copy, modify,
# merge, publish, distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
# PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
# HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
# OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
Description: >
Create the Lambda functions and other components required for the Connect Wallboard.
Parameters:
DDBTable:
Type: String
Description: DynamoDB table to create
Default: ConnectWallboard
KinesisAgentStream:
Type: String
Description: Kinesis agent event stream ARN - required to set appropriate Lambda trigger
Outputs:
APIGatewayURL:
Value: !Join ["", ["https://", !Ref "APIGateway", ".execute-api.", !Ref "AWS::Region", ".amazonaws.com/", !Ref "APIGatewayStage", "/wallboard/"]]
DynamoDBTableName:
Value: !Ref DDBTable
Resources:
DynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
TableName: !Ref DDBTable
AttributeDefinitions:
- AttributeName: "Identifier"
AttributeType: "S"
- AttributeName: "RecordType"
AttributeType: "S"
KeySchema:
- AttributeName: "Identifier"
KeyType: HASH
- AttributeName: "RecordType"
KeyType: RANGE
ProvisionedThroughput:
ReadCapacityUnits: 10
WriteCapacityUnits: 10
LambdaRenderRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
ManagedPolicyArns:
- !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
Policies:
- PolicyName: DynamoDBPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- dynamodb:Query
Effect: Allow
Resource: !Sub "arn:${AWS::Partition}:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${DDBTable}"
- PolicyName: ConnectPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- connect:GetCurrentMetricData
Effect: Allow
Resource: "*"
LambdaHistoricalRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
ManagedPolicyArns:
- !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole"
Policies:
- PolicyName: DynamoDBPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- dynamodb:Scan
- dynamodb:PutItem
Effect: Allow
Resource: !Sub "arn:${AWS::Partition}:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${DDBTable}"
- PolicyName: ConnectPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- connect:GetMetricData
Effect: Allow
Resource: "*"
LambdaAgentRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
ManagedPolicyArns:
- !Sub "arn:${AWS::Partition}:iam::aws:policy/service-role/AWSLambdaKinesisExecutionRole"
Policies:
- PolicyName: DynamoDBPolicy
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- dynamodb:Scan
- dynamodb:PutItem
Effect: Allow
Resource: !Sub "arn:${AWS::Partition}:dynamodb:${AWS::Region}:${AWS::AccountId}:table/${DDBTable}"
LambdaRenderPermission:
Type: AWS::Lambda::Permission
DependsOn:
- APIGateway
- LambdaRender
Properties:
Action: lambda:invokeFunction
FunctionName: !Ref LambdaRender
Principal: apigateway.amazonaws.com
SourceArn: !Sub "arn:aws:execute-api:${AWS::Region}:${AWS::AccountId}:${APIGateway}/*"
LambdaRender:
Type: AWS::Lambda::Function
DependsOn: LambdaRenderRole
Properties:
FunctionName: "Connect-Wallboard-Render"
Code:
S3Bucket: !Sub "cfn-code-${AWS::Region}"
S3Key: render-wallboard.zip
Description: "Connect wallboard rendering function"
Handler: "render-wallboard.lambda_handler"
Role: !GetAtt LambdaRenderRole.Arn
Runtime: python3.11
Timeout: 20
Environment:
Variables:
WallboardTable: !Ref DDBTable
LambdaAgentSourceMapping:
Type: AWS::Lambda::EventSourceMapping
Properties:
EventSourceArn: !Ref KinesisAgentStream
FunctionName: !Ref LambdaAgent
StartingPosition: LATEST
LambdaAgent:
Type: AWS::Lambda::Function
DependsOn: LambdaAgentRole
Properties:
FunctionName: "Connect-Wallboard-Agent-Events"
Code:
S3Bucket: !Sub "cfn-code-${AWS::Region}"
S3Key: process-agent-event.zip
Description: "Connect wallboard agent event processing"
Handler: "process-agent-event.lambda_handler"
Role: !GetAtt LambdaAgentRole.Arn
Runtime: python3.11
Timeout: 20
Environment:
Variables:
WallboardTable: !Ref DDBTable
LambdaHistoricalPermission:
Type: AWS::Lambda::Permission
DependsOn: LambdaHistorical
Properties:
Action: lambda:invokeFunction
FunctionName: !Ref LambdaHistorical
Principal: "events.amazonaws.com"
SourceArn: !GetAtt HistoricalEvent.Arn
LambdaHistorical:
Type: AWS::Lambda::Function
DependsOn: LambdaHistoricalRole
Properties:
FunctionName: "Connect-Wallboard-Historical-Metrics"
Code:
S3Bucket: !Sub "cfn-code-${AWS::Region}"
S3Key: get-historical-metrics.zip
Description: "Connect wallboard historical metrics data retrieval"
Handler: "get-historical-metrics.lambda_handler"
Role: !GetAtt LambdaHistoricalRole.Arn
Runtime: python3.11
Timeout: 20
Environment:
Variables:
WallboardTable: !Ref DDBTable
HistoricalEvent:
Type: AWS::Events::Rule
DependsOn: LambdaHistorical
Properties:
Name: "Connect-Wallboard-Historical-Collection"
ScheduleExpression: "rate(1 minute)"
State: ENABLED
Targets:
- Arn: !GetAtt LambdaHistorical.Arn
Id: "HistoricalDataCollection"
APIGateway:
Type: AWS::ApiGateway::RestApi
Properties:
Name: "Connect Wallboard"
FailOnWarnings: True
APIGatewayStage:
Type: AWS::ApiGateway::Stage
Properties:
StageName: "prod"
RestApiId: !Ref APIGateway
DeploymentId: !Ref APIGatewayDeployment
MethodSettings:
- ResourcePath: "/"
HttpMethod: GET
DataTraceEnabled: True
APIGatewayDeployment:
Type: AWS::ApiGateway::Deployment
DependsOn:
- APIGateway
- APIGWMethod
Properties:
RestApiId: !Ref APIGateway
APIGatewayResource:
Type: AWS::ApiGateway::Resource
Properties:
RestApiId: !Ref APIGateway
ParentId: !GetAtt APIGateway.RootResourceId
PathPart: "wallboard"
APIGWMethod:
Type: AWS::ApiGateway::Method
DependsOn: LambdaRender
Properties:
ResourceId: !Ref APIGatewayResource
RestApiId: !Ref APIGateway
HttpMethod: GET
AuthorizationType: NONE
Integration:
Type: AWS_PROXY
IntegrationHttpMethod: POST
Uri: !Join ["", ["arn:aws:apigateway:", !Ref "AWS::Region", ":lambda:path/2015-03-31/functions/", !GetAtt LambdaRender.Arn, "/invocations"]]
IntegrationResponses:
- StatusCode: 200
ResponseTemplates:
application/json: ""
ResponseParameters:
method.response.header.Access-Control-Allow-Origin: "'*'"
MethodResponses:
- StatusCode: 200
ResponseModels:
application/json: "Empty"
ResponseParameters:
method.response.header.Access-Control-Allow-Origin: False
APIGWOptionsMethod:
Type: AWS::ApiGateway::Method
Properties:
ResourceId: !Ref APIGatewayResource
RestApiId: !Ref APIGateway
HttpMethod: OPTIONS
AuthorizationType: NONE
Integration:
Type: MOCK
IntegrationResponses:
- StatusCode: 200
ResponseParameters:
method.response.header.Access-Control-Allow-Headers: "'Content-Type,X-Amz-Date,Authorization,X-Api-Key,X-Amz-Security-Token'"
method.response.header.Access-Control-Allow-Methods: "'GET,OPTIONS'"
method.response.header.Access-Control-Allow-Origin: "'*'"
PassthroughBehavior: WHEN_NO_MATCH
RequestTemplates:
application/json: "{'statusCode': 200}"
MethodResponses:
- StatusCode: 200
ResponseModels:
application/json: "Empty"
ResponseParameters:
method.response.header.Access-Control-Allow-Origin: False
method.response.header.Access-Control-Allow-Headers: False
method.response.header.Access-Control-Allow-Methods: False