-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtemplate.yaml
420 lines (387 loc) · 12.6 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
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: >
ThingPress instance for importing certificates via Multi Account
Registration at scale.
Globals:
Function:
Timeout: 3
Metadata:
AWS::ServerlessRepo::Application:
Name: ThingPress
Description: >-
An application that accelerates Multi-Account Registration
bulk certificate provisioning for the Internet of Things.
Author: Richard Elberger (rpcme)
SpdxLicense: MIT-0
LicenseUrl: LICENSE
ReadmeUrl: README.md
HomePageUrl: https://github.com/awslabs/thingpress
SemanticVersion: 0.0.1
SourceCodeUrl: https://github.com/awslabs/thingpress
Parameters:
IamUserArn:
Default: None
Description: >-
The ARN for the user having access to the S3 bucket for uploading manifests.
Type: String
IoTPolicy:
Default: None
Type: String
Description: >-
The AWS IoT Policy that you will apply to every certificate
being imported. Using best practice techniques, abstract the
Policy using Policy variables.
IoTThingGroup:
Default: None
Type: String
Description: >-
The AWS IoT Thing Group you apply to the Thing being
created. Put None if no Thing Group.
IoTThingType:
Default: None
Type: String
Description: >-
The AWS IoT Thing Type you apply to the Thing being created. Put
None if no Thing Type.
MicrochipVerifyCertName:
Default: verify-cert.cer
Type: String
Description: >-
Microchip only: The verify certificate that is provided by
Microchip. This must not have a .json filename suffix.
ConcurrentExecutions:
Default: 10
Type: Number
Description: >-
By default the concurrent executions for the bulk importer is 10
since the IoT Limit TPS for most APIs is 10, and there is some
balance. In case of throttling failure, the payload will be requeued.
Resources:
BulkImporterQueue:
Type: AWS::SQS::Queue
Properties:
QueueName: !Sub "${AWS::StackName}-Bulk-Importer"
VisibilityTimeout: 300
SqsManagedSseEnabled: true
BulkImporterQueuePolicy:
Type: AWS::SQS::QueuePolicy
Properties:
Queues:
- !Ref BulkImporterQueue
PolicyDocument:
Id: BulkImporterQueuePolicyId
Version: "2012-10-17"
Statement:
- Sid: BulkImporterQueuePolicySId
Action:
- sqs:SendMessage
- sqs:ReceiveMessage
Effect: Allow
Resource: !GetAtt BulkImporterQueue.Arn
Principal:
AWS:
- !GetAtt BulkImporterFunctionRole.Arn
- !GetAtt ProductProviderFunctionRole.Arn
BulkImporterFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: lambda-bulk-importer/
Handler: main.lambda_handler
Runtime: python3.8
Role: !GetAtt BulkImporterFunctionRole.Arn
ReservedConcurrentExecutions: !Ref ConcurrentExecutions
Timeout: 300
Environment:
Variables:
QUEUE_TARGET: !Ref BulkImporterQueue
Events:
QueueEvent:
Type: SQS
Properties:
BatchSize: 10
Enabled: true
Queue: !GetAtt BulkImporterQueue.Arn
ProductProviderQueue:
Type: AWS::SQS::Queue
Properties:
QueueName: !Sub "${AWS::StackName}-Product-Provider"
VisibilityTimeout: 300
SqsManagedSseEnabled: true
ProductProviderQueuePolicy:
Type: AWS::SQS::QueuePolicy
Properties:
Queues:
- !Ref ProductProviderQueue
PolicyDocument:
Id: ProductProviderQueuePolicyId
Version: "2012-10-17"
Statement:
- Sid: ProductProviderQueuePolicySId
Action:
- sqs:SendMessage
- sqs:ReceiveMessage
Effect: Allow
Resource: !GetAtt ProductProviderQueue.Arn
Principal:
AWS:
- !GetAtt MicrochipSupplierProviderFunctionRole.Arn
- !GetAtt ProductProviderFunctionRole.Arn
- !GetAtt ESP32S3SupplierProviderFunctionRole.Arn
ProductProviderFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: lambda-product-providers/
Handler: main.lambda_handler
Runtime: python3.8
Role: !GetAtt ProductProviderFunctionRole.Arn
Timeout: 300
Environment:
Variables:
QUEUE_TARGET: !Ref BulkImporterQueue
POLICY_NAME: !Ref IoTPolicy
THING_GROUP_NAME: !Ref IoTThingGroup
THING_TYPE_NAME: !Ref IoTThingType
Events:
QueueEvent:
Type: SQS
Properties:
BatchSize: 10
Enabled: true
Queue: !GetAtt ProductProviderQueue.Arn
MicrochipSupplierProviderBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub "${AWS::StackName}-microchip"
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: 'aws:kms'
KMSMasterKeyID: 'alias/aws/s3'
VersioningConfiguration:
Status: Enabled
InfineonSupplierProviderBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub "${AWS::StackName}-infineon"
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: 'aws:kms'
KMSMasterKeyID: 'alias/aws/s3'
VersioningConfiguration:
Status: Enabled
ESP32S3SupplierProviderBucket:
Type: AWS::S3::Bucket
Properties:
BucketName: !Sub "${AWS::StackName}-esp32s3"
BucketEncryption:
ServerSideEncryptionConfiguration:
- ServerSideEncryptionByDefault:
SSEAlgorithm: 'aws:kms'
KMSMasterKeyID: 'alias/aws/s3'
VersioningConfiguration:
Status: Enabled
MicrochipSupplierProviderFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: lambda-supplier-providers/Microchip
Handler: main.lambda_handler
Runtime: python3.8
Role: !GetAtt MicrochipSupplierProviderFunctionRole.Arn
Timeout: 900
MemorySize: 2048
Environment:
Variables:
QUEUE_TARGET: !Ref ProductProviderQueue
VERIFY_CERT: !Ref MicrochipVerifyCertName
Events:
S3Event:
Type: S3
Properties:
Bucket: !Ref MicrochipSupplierProviderBucket
Events: s3:ObjectCreated:*
Filter:
S3Key:
Rules:
- Name: Suffix
Value: .json
InfineonSupplierProviderFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: lambda-supplier-providers/Infineon
Handler: main.lambda_handler
Runtime: python3.8
Role: !GetAtt InfineonSupplierProviderFunctionRole.Arn
Timeout: 900
MemorySize: 2048
Environment:
Variables:
QUEUE_TARGET: !Ref ProductProviderQueue
Events:
S3Event:
Type: S3
Properties:
Bucket: !Ref InfineonSupplierProviderBucket
Events: s3:ObjectCreated:*
Filter:
S3Key:
Rules:
- Name: Suffix
Value: .xml
ESP32S3SupplierProviderFunction:
Type: AWS::Serverless::Function
Properties:
CodeUri: lambda-supplier-providers/ESP32-S3
Handler: main.lambda_handler
Runtime: python3.8
Role: !GetAtt ESP32S3SupplierProviderFunctionRole.Arn
Timeout: 900
MemorySize: 2048
Environment:
Variables:
QUEUE_TARGET: !Ref ProductProviderQueue
Events:
S3Event:
Type: S3
Properties:
Bucket: !Ref ESP32S3SupplierProviderBucket
Events: s3:ObjectCreated:*
Filter:
S3Key:
Rules:
- Name: Suffix
Value: .csv
MicrochipSupplierProviderFunctionRole:
Type: AWS::IAM::Role
Properties:
Path: /
RoleName: !Sub "${AWS::StackName}-MicrochipSupplierProviderFunctionRole"
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole'
- 'arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess'
- 'arn:aws:iam::aws:policy/AmazonSQSFullAccess'
AssumeRolePolicyDocument:
Statement:
-
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
InfineonSupplierProviderFunctionRole:
Type: AWS::IAM::Role
Properties:
Path: /
RoleName: !Sub "${AWS::StackName}-InfineonSupplierProviderFunctionRole"
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole'
- 'arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess'
- 'arn:aws:iam::aws:policy/AmazonSQSFullAccess'
AssumeRolePolicyDocument:
Statement:
-
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
ESP32S3SupplierProviderFunctionRole:
Type: AWS::IAM::Role
Properties:
Path: /
RoleName: !Sub "${AWS::StackName}-ESP32S3SupplierProviderFunctionRole"
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole'
- 'arn:aws:iam::aws:policy/AmazonS3ReadOnlyAccess'
- 'arn:aws:iam::aws:policy/AmazonSQSFullAccess'
AssumeRolePolicyDocument:
Statement:
-
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
BulkImporterFunctionRole:
Type: AWS::IAM::Role
Properties:
Path: /
RoleName: !Sub "${AWS::StackName}-BulkImporterFunctionRole"
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole'
- 'arn:aws:iam::aws:policy/AmazonSQSFullAccess'
- 'arn:aws:iam::aws:policy/AWSIoTFullAccess'
AssumeRolePolicyDocument:
Statement:
-
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
ProductProviderFunctionRole:
Type: AWS::IAM::Role
Properties:
Path: /
RoleName: !Sub "${AWS::StackName}-ProductProviderFunctionRole"
ManagedPolicyArns:
- 'arn:aws:iam::aws:policy/service-role/AWSLambdaBasicExecutionRole'
- 'arn:aws:iam::aws:policy/AmazonSQSFullAccess'
AssumeRolePolicyDocument:
Statement:
-
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action:
- 'sts:AssumeRole'
MicrochipSupplierProviderInvokePermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt MicrochipSupplierProviderFunction.Arn
Action: 'lambda:InvokeFunction'
Principal: 's3.amazonaws.com'
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !GetAtt MicrochipSupplierProviderBucket.Arn
InfineonSupplierProviderInvokePermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt InfineonSupplierProviderFunction.Arn
Action: 'lambda:InvokeFunction'
Principal: 's3.amazonaws.com'
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !GetAtt InfineonSupplierProviderBucket.Arn
ESP32S3SupplierProviderInvokePermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt ESP32S3SupplierProviderFunction.Arn
Action: 'lambda:InvokeFunction'
Principal: 's3.amazonaws.com'
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !GetAtt ESP32S3SupplierProviderBucket.Arn
ProductProviderInvokePermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt ProductProviderFunction.Arn
Action: 'lambda:InvokeFunction'
Principal: 'sqs.amazonaws.com'
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !GetAtt ProductProviderQueue.Arn
BulkImporterInvokePermission:
Type: AWS::Lambda::Permission
Properties:
FunctionName: !GetAtt BulkImporterFunction.Arn
Action: 'lambda:InvokeFunction'
Principal: 'sqs.amazonaws.com'
SourceAccount: !Ref 'AWS::AccountId'
SourceArn: !GetAtt BulkImporterQueue.Arn
Outputs:
InfineonIngestPoint:
Description: >-
The Amazon S3 bucket for uploading Infineon manifests (XML)
Value: !Ref InfineonSupplierProviderBucket
MicrochipIngestPoint:
Description: >-
The Amazon S3 bucket for uploading Microchip manifests (JSON)
Value: !Ref MicrochipSupplierProviderBucket