-
Notifications
You must be signed in to change notification settings - Fork 0
/
template.yaml
480 lines (465 loc) · 14.5 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
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
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
workflow-management-and-execution
SAM Template for IoT workflow-management-and-execution
Globals:
Function:
Tracing: Active
Timeout: 60
Parameters:
StateMachineName:
Type: String
Default: FirmwareUpgrade
Resources:
EventsSNSTopic:
Type: AWS::SNS::Topic
Properties:
TopicName: "EventsTopic"
KmsMasterKeyId: alias/aws/sns
DMDownloadFirmwareFunction:
Type: AWS::Serverless::Function
Properties:
Policies:
- SNSPublishMessagePolicy:
TopicName: !GetAtt EventsSNSTopic.TopicName
- Statement:
Effect: Allow
Action:
- iot:DescribeEndpoint
Resource: "*"
- Statement:
Effect: Allow
Action:
- 'iot:Connect'
Resource:
- !Sub
- 'arn:aws:iot:${Region}:${AccountID}:client/*'
- Region: !Ref 'AWS::Region'
AccountID: !Ref 'AWS::AccountId'
- Statement:
Effect: Allow
Action:
- 'iot:Publish'
Resource:
- !Sub
- 'arn:aws:iot:${Region}:${AccountID}:topic/*/*/*/*'
- Region: !Ref 'AWS::Region'
AccountID: !Ref 'AWS::AccountId'
- Statement:
Effect: Allow
Action:
- 'iot:Subscribe'
Resource:
- !Sub
- 'arn:aws:iot:${Region}:${AccountID}:topicfilter/*/*'
- Region: !Ref 'AWS::Region'
AccountID: !Ref 'AWS::AccountId'
- Statement:
Effect: Allow
Action:
- 'iot:Receive'
Resource:
- !Sub
- 'arn:aws:iot:${Region}:${AccountID}:topic/*/*'
- Region: !Ref 'AWS::Region'
AccountID: !Ref 'AWS::AccountId'
CodeUri: device-management/functions/download-operation/
Handler: app.lambdaHandler
Runtime: nodejs18.x
Environment:
Variables:
EVENT_TOPIC_ARN: !Ref EventsSNSTopic
REGION: !Ref 'AWS::Region'
Architectures:
- x86_64
JobsUpdateStatus:
Type: AWS::Serverless::Function
Properties:
Policies:
- Statement:
Effect: Allow
Action:
- iot:DescribeEndpoint
Resource: "*"
- Statement:
Effect: Allow
Action:
- iotjobsdata:UpdateJobExecution
Resource:
- !Sub
- 'arn:aws:iot:${Region}:${AccountID}:thing/*'
- Region: !Ref 'AWS::Region'
AccountID: !Ref 'AWS::AccountId'
CodeUri: job-processing-and-scheduling/functions/update-status
Handler: app.lambdaHandler
Runtime: nodejs18.x
Environment:
Variables:
EVENT_TOPIC_ARN: !Ref EventsSNSTopic
REGION: !Ref 'AWS::Region'
Architectures:
- x86_64
JobsCreateJob:
Type: AWS::Serverless::Function
Properties:
Policies:
- Statement:
Effect: Allow
Action:
- iot:DescribeEndpoint
Resource: "*"
- Statement:
Effect: Allow
Action:
- iot:CreateJob
- iot:DescribeJobTemplate
Resource: [
{
"Fn::Sub": "arn:aws:iot:*:${AWS::AccountId}:jobtemplate/*"
},
{
"Fn::Sub": "arn:aws:iot:*:${AWS::AccountId}:thinggroup/*"
},
{
"Fn::Sub": "arn:aws:iot:*:${AWS::AccountId}:job/*"
},
{
"Fn::Sub": "arn:aws:iot:*:${AWS::AccountId}:thing/*"
}
]
CodeUri: job-processing-and-scheduling/functions/create-job
Handler: app.lambdaHandler
Runtime: nodejs18.x
Environment:
Variables:
FWU_STATE_MACHINE: !Ref StateMachineName
REGION: !Ref 'AWS::Region'
Architectures:
- x86_64
UpgradeStatusReceivedFunction:
Type: AWS::Serverless::Function
Properties:
Policies:
- SNSPublishMessagePolicy:
TopicName: !GetAtt EventsSNSTopic.TopicName
- Statement:
Effect: Allow
Action:
- dynamodb:Query
Resource: !Join [ "", [ "arn:aws:dynamodb:", !Ref "AWS::Region", ":", !Ref "AWS::AccountId", ":table/", !Ref "FirmwareUpgradeTaskTokensDB" ] ]
- Statement:
Effect: Allow
Action:
- states:SendTaskFailure
- states:SendTaskSuccess
Resource: !Ref FirmwareUpgradeStateMachine
CodeUri: workflow-management-and-execution/functions/upgrade-status-device-events/
Handler: app.lambdaHandler
Runtime: nodejs18.x
Environment:
Variables:
EVENT_TOPIC_ARN: !Ref EventsSNSTopic
TOKENS_TABLE_NAME: !Ref FirmwareUpgradeTaskTokensDB
Architectures:
- x86_64
OnDownloadStartACKFunction:
Type: AWS::Serverless::Function
Properties:
Policies:
- Statement:
Effect: Allow
Action:
- states:SendTaskFailure
- states:SendTaskSuccess
Resource: !Ref FirmwareUpgradeStateMachine
CodeUri: workflow-management-and-execution/functions/upgrade-start-ack/
Handler: app.lambdaHandler
Runtime: nodejs18.x
Architectures:
- x86_64
FirmwareUpgradeJobTemplate:
Type: AWS::IoT::JobTemplate
DependsOn: EventsSNSTopic
Properties:
JobTemplateId: !Sub "${StateMachineName}"
Description: Firmware Upgrade Job Template
Document: !Sub |
{
"version": "1.0",
"firmwareVersion": "",
"stateMachineName": "${StateMachineName}",
"eventTopic": "arn:aws:sns:${AWS::Region}:${AWS::AccountId}:EventsTopic",
"upgradeTrigger": "manual"
}
StartStateMachine:
Type: AWS::IoT::TopicRule
Properties:
RuleName: StartStateMachineRule
TopicRulePayload:
AwsIotSqlVersion: 2016-03-23
RuleDisabled: False
Sql: "SELECT *, topic(3) AS thingName FROM '$aws/things/+/jobs/notify-next' WHERE isUndefined(execution)=false"
Actions:
- StepFunctions:
RoleArn: !GetAtt StepFunctionInvoke.Arn
StateMachineName: !Sub "${StateMachineName}"
DeviceMessageHandlerFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: device-management/functions/message-handler/
Handler: app.lambdaHandler
Runtime: nodejs18.x
Policies:
- SNSPublishMessagePolicy:
TopicName: !GetAtt EventsSNSTopic.TopicName
Architectures:
- x86_64
Environment:
Variables:
EVENT_TOPIC_ARN: !Ref EventsSNSTopic
Events:
IoTLambda:
Type: IoTRule
Properties:
AwsIotSqlVersion: 2016-03-23
Sql: SELECT topic(4) as thingName, decode(decode(encode(*, 'base64'), 'proto', 'usp1.1bucket', 'usp-1-1.desc', 'usp-record-1-1.proto', 'Record').noSessionContext.payload, 'proto', 'usp1.1bucket', 'usp-1-1.desc', 'usp-msg-1-1.proto', 'Msg') as payload FROM 'controllers/self::aws-dm-controller/agents/+/response'
StepFunctionInvoke:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- sts:AssumeRole
Principal:
Service:
- iot.amazonaws.com
Policies:
- PolicyName: allowStartStepFunction
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action: states:StartExecution
Resource: !Ref FirmwareUpgradeStateMachine
FirmwareUpgradeStateMachineRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- sts:AssumeRole
Principal:
Service:
- states.amazonaws.com
Policies:
- PolicyName: allowIoT
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- iot:searchIndex
- iot:updateThing
Resource: '*'
- PolicyName: allowSNS
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action: sns:*
Resource: !Ref EventsSNSTopic
- PolicyName: allowLogs
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- logs:CreateLogDelivery
- logs:GetLogDelivery
- logs:UpdateLogDelivery
- logs:DeleteLogDelivery
- logs:ListLogDeliveries
- logs:PutLogEvents
- logs:PutResourcePolicy
- logs:DescribeResourcePolicies
- logs:DescribeLogGroups
Resource: '*'
- PolicyName: allowTrace
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action:
- xray:PutTraceSegments
- xray:PutTelemetryRecords
- xray:GetSamplingRules
- xray:GetSamplingTargets
Resource: '*'
- PolicyName: allowDynamo
PolicyDocument:
Version: 2012-10-17
Statement:
- Effect: Allow
Action: dynamodb:PutItem
Resource: !Join [ "", [ "arn:aws:dynamodb:", !Ref "AWS::Region", ":", !Ref "AWS::AccountId", ":table/", !Ref "FirmwareUpgradeTaskTokensDB" ] ]
FirmwareUpgradeStateMachine:
Type: AWS::Serverless::StateMachine
Properties:
Name: !Sub "${StateMachineName}"
DefinitionUri: workflow-management-and-execution/statemachine/firmware_upgrade.asl.json
Role: !GetAtt FirmwareUpgradeStateMachineRole.Arn
Logging:
Destinations:
- CloudWatchLogsLogGroup:
LogGroupArn: !GetAtt StepFunctionsLogGroup.Arn
IncludeExecutionData: True
Level: ALL
Tracing:
Enabled: true
StepFunctionsLogGroup:
Type: AWS::Logs::LogGroup
Properties:
LogGroupName: !Sub /aws/stepfunc/${StateMachineName}
RetentionInDays: 30
FirmwareUpgradeTaskTokensDB:
Type: AWS::DynamoDB::Table
Properties:
TableName: FWUTaskTokens
AttributeDefinitions:
- AttributeName: operationId
AttributeType: S
- AttributeName: token
AttributeType: S
KeySchema:
- AttributeName: operationId
KeyType: HASH
- AttributeName: token
KeyType: RANGE
BillingMode: PAY_PER_REQUEST
ProtoBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: usp1.1bucket
ProtoBucketPolicy:
Type: AWS::S3::BucketPolicy
Properties:
Bucket: !Ref ProtoBucket
PolicyDocument:
Version: 2012-10-17
Statement:
- Action:
- 's3:Get*'
Effect: Allow
Resource: !Join
- ''
- - 'arn:aws:s3:::'
- !Ref ProtoBucket
- /*
Principal:
Service:
- iot.amazonaws.com
DMDownloadFirmwareFunctSub:
Type: AWS::SNS::Subscription
Properties:
Endpoint: !GetAtt DMDownloadFirmwareFunction.Arn
FilterPolicy:
name:
- START_UPGRADE
FilterPolicyScope: MessageBody
Protocol: lambda
TopicArn: !Ref EventsSNSTopic
DMLambdaInvokePermission:
Type: 'AWS::Lambda::Permission'
Properties:
Action: 'lambda:InvokeFunction'
Principal: sns.amazonaws.com
FunctionName: !GetAtt
- DMDownloadFirmwareFunction
- Arn
SourceArn: !Ref EventsSNSTopic
JobsUpdateStatusSub:
Type: AWS::SNS::Subscription
Properties:
Endpoint: !GetAtt JobsUpdateStatus.Arn
FilterPolicy:
name:
- FIRMWARE_UPGRADE_SUCCESS
- FIRMWARE_UPGRADE_FAIL
FilterPolicyScope: MessageBody
Protocol: lambda
TopicArn: !Ref EventsSNSTopic
JULambdaInvokePermission:
Type: 'AWS::Lambda::Permission'
Properties:
Action: 'lambda:InvokeFunction'
Principal: sns.amazonaws.com
FunctionName: !GetAtt
- JobsUpdateStatus
- Arn
SourceArn: !Ref EventsSNSTopic
UpgradeStatusReceivedSub:
Type: AWS::SNS::Subscription
Properties:
Endpoint: !GetAtt UpgradeStatusReceivedFunction.Arn
FilterPolicy:
name:
- DOWNLOAD_OPERATION_DONE
- FIRMWARE_TRANSFERRED
- DEVICE_REBOOTED
FilterPolicyScope: MessageBody
Protocol: lambda
TopicArn: !Ref EventsSNSTopic
UpgradeStatusLambdaInvokePermission:
Type: 'AWS::Lambda::Permission'
Properties:
Action: 'lambda:InvokeFunction'
Principal: sns.amazonaws.com
FunctionName: !GetAtt
- UpgradeStatusReceivedFunction
- Arn
SourceArn: !Ref EventsSNSTopic
OnDownloadStartACKSub:
Type: AWS::SNS::Subscription
Properties:
Endpoint: !GetAtt OnDownloadStartACKFunction.Arn
FilterPolicy:
name:
- DEVICE_STARTED_DOWNLOAD_SUCCESS
- DEVICE_STARTED_DOWNLOAD_FAIL
FilterPolicyScope: MessageBody
Protocol: lambda
TopicArn: !Ref EventsSNSTopic
OnAckLambdaInvokePermission:
Type: 'AWS::Lambda::Permission'
Properties:
Action: 'lambda:InvokeFunction'
Principal: sns.amazonaws.com
FunctionName: !GetAtt
- OnDownloadStartACKFunction
- Arn
SourceArn: !Ref EventsSNSTopic
ApplicationResourceGroup:
Type: AWS::ResourceGroups::Group
Properties:
Name:
Fn::Join:
- ''
- - ApplicationInsights-SAM-
- Ref: AWS::StackName
ResourceQuery:
Type: CLOUDFORMATION_STACK_1_0
ApplicationInsightsMonitoring:
Type: AWS::ApplicationInsights::Application
Properties:
ResourceGroupName:
Fn::Join:
- ''
- - ApplicationInsights-SAM-
- Ref: AWS::StackName
AutoConfigurationEnabled: 'true'
DependsOn: ApplicationResourceGroup