-
Notifications
You must be signed in to change notification settings - Fork 36
/
cfn-commands.yml
541 lines (503 loc) · 18.3 KB
/
cfn-commands.yml
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
---
#-----------------------------------------------------------------------------------------------------------------------
# Copyright Amazon.com Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance
# with the License. A copy of the License is located at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# or in the 'license' file accompanying this file. This file is distributed on an 'AS IS' BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, express or implied. See the License for the specific language governing permissions
# and limitations under the License.
#-----------------------------------------------------------------------------------------------------------------------
AWSTemplateFormatVersion: '2010-09-09'
Transform: AWS::Serverless-2016-10-31
Description: CDF Commands Service
Globals:
Api:
OpenApiVersion: 3.0.1
Parameters:
ApplicationConfigurationOverride:
Description: This allows you to override any application configuration. It should consists of a text-based content with a structure and syntax comprising key–value pairs for properties. Any configurations contained in this will override the configurations found and merged from the default .env files.
Type: String
Environment:
Description: Name of environment. Used to name the created resources.
Type: String
MinLength: 1
TemplateSnippetS3UriBase:
Description: |
S3 uri of directory where template snippets are stored for the account.
Type: String
MinLength: 1
AuthType:
Description: Authorization type to apply to the API gateway endpoints
Type: String
Default: None
AllowedValues:
- None
- Private
- Cognito
- LambdaRequest
- LambdaToken
- ApiKey
- IAM
MinLength: 1
ApiGatewayDefinitionTemplate:
Description: |
Name of the API Gateway Cloudformation definition along with the authorization method to use. Use one of the provided
templates to implement no auth, private, api key, lambda request, lamdba token, or Cognito auth, or modify one to meet your own
authentization requirements. The template must exist within the provided TemplateSnippetS3UriBase location.
Type: String
MinLength: 1
VpcId:
Description: ID of VPC to deploy the API into. Only required if AuthType = 'Private'.
Type: String
CDFSecurityGroupId:
Description: ID of an existing CDF security group to deploy the API into. Only required if AuthType = 'Private'.
Type: String
PrivateSubNetIds:
Description: Comma delimited list of private subnetIds to deploy the API into. Only required if AuthType = 'Private'.
Type: CommaDelimitedList
PrivateApiGatewayVPCEndpoint:
Description: VPC endpoint. Only required if AuthType = 'Private'.
Type: String
CognitoUserPoolArn:
Description: Cognito user pool arn. Only required if AuthType is set to 'Cognito'.
Type: String
Default: 'N/A'
AuthorizerFunctionArn:
Description: Lambda authorizer function arn. Only required if AuthType is set to 'LambdaRequest' or 'LambdaToken'.
Type: String
Default: 'N/A'
BucketName:
Description: Name of bucket to store command information.
Type: String
MinLength: 1
PresignedUrlMQTTTopic:
Description: The MQTT topic where pre-signed url requests are sent/received from/to a device.
Default: cdf/commands/presignedurl/+/+/+
Type: String
MinLength: 1
AssetLibraryFunctionName:
Description: AssetLibrary REST API function name
Type: String
Default: ''
ProvisioningFunctionName:
Description: Provisioning REST API function name
Type: String
Default: ''
CustomResourceLambdaArn:
Description: Custom resource lambda arn
Type: String
MinLength: 1
KmsKeyId:
Description: The KMS key ID used to encrypt DynamoDB.
Type: String
EnableApiGatewayAccessLogs:
Description: Enales API gateway Access Logging, defaults to false if not specified.
Type: String
Default: 'false'
AllowedValues:
- 'true'
- 'false'
MinLength: 1
Conditions:
DeployInVPC: !Not [!Equals [!Ref VpcId, 'N/A']]
DeployWithLambdaAuth:
!Or [!Equals [!Ref AuthType, 'LambdaRequest'], !Equals [!Ref AuthType, 'LambdaToken']]
KmsKeyIdProvided: !Not [!Equals [!Ref KmsKeyId, '']]
EnableApiGatewayAccessLogs: !Equals [!Ref EnableApiGatewayAccessLogs, 'true']
Resources:
ApiGatewayApi:
'Fn::Transform':
Name: 'AWS::Include'
Parameters:
Location: !Sub '${TemplateSnippetS3UriBase}${ApiGatewayDefinitionTemplate}'
DependsOn:
- RESTLambdaFunction
ApiGatewayAuthorizerInvokeRole:
Condition: DeployWithLambdaAuth
'Fn::Transform':
Name: 'AWS::Include'
Parameters:
Location: !Sub '${TemplateSnippetS3UriBase}cfn-role-lambdaRequestAuthInvokerRole.yaml'
DependsOn:
- RESTLambdaFunction
ApiGatewayAccessLogGroup:
Condition: EnableApiGatewayAccessLogs
Type: 'AWS::Logs::LogGroup'
Properties:
LogGroupName: !Sub 'cdf-commands-apigatewayaccesslogs-${Environment}'
PresignedUrlMQTTRule:
Type: 'AWS::IoT::TopicRule'
Properties:
TopicRulePayload:
Actions:
- Lambda:
FunctionArn: !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${PresignedUrlLambdaFunction}'
Description: 'Pre-signed url requests (CDF Commands service)'
AwsIotSqlVersion: '2016-03-23'
RuleDisabled: 'false'
Sql: !Sub "SELECT topic(4) as commandId, topic(5) as thingName, * FROM '${PresignedUrlMQTTTopic}'"
PresignedUrlLambdaFunctionInvocationPermission:
Type: AWS::Lambda::Permission
Properties:
SourceArn: !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:rule/${PresignedUrlMQTTRule}'
Action: lambda:InvokeFunction
Principal: iot.amazonaws.com
FunctionName: !GetAtt PresignedUrlLambdaFunction.Arn
SourceAccount: !Ref AWS::AccountId
JobLifecycleMQTTRule:
Type: 'AWS::IoT::TopicRule'
Properties:
TopicRulePayload:
Actions:
- Lambda:
FunctionArn: !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${JobLifecycleLambdaFunction}'
Description: 'Job lifecycle rule (CDF Commands service)'
AwsIotSqlVersion: '2016-03-23'
RuleDisabled: 'false'
Sql: !Sub "SELECT topic(4) as jobId, topic(5) as jobEvent, * FROM '$aws/events/job/+/+'"
JobLifecycleMQTTRuleInvocationPermission:
Type: AWS::Lambda::Permission
Properties:
SourceArn: !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:rule/${JobLifecycleMQTTRule}'
Action: lambda:InvokeFunction
Principal: iot.amazonaws.com
FunctionName: !GetAtt JobLifecycleLambdaFunction.Arn
SourceAccount: !Ref AWS::AccountId
KmsPolicy:
Type: AWS::IAM::ManagedPolicy
Condition: KmsKeyIdProvided
Properties:
Description: 'cdf-provisioning policy for accessing KMS'
Path: '/cdf/commands/'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Action:
- 'kms:Decrypt'
Effect: Allow
Resource: !Sub 'arn:aws:kms:${AWS::Region}:${AWS::AccountId}:key/${KmsKeyId}'
ApplicationPolicies:
Type: 'AWS::IAM::ManagedPolicy'
Metadata:
cfn_nag:
rules_to_suppress:
- id: W13
reason: 'Lambda provided permissions to manage resources in iot core'
Properties:
Description: 'cdf-commands application policies'
Path: '/'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: 'iotjobs'
Action:
- 'iot:CreateJob'
- 'iot:CreateThingGroup'
- 'iot:DescribeJob'
- 'iot:GetJobDocument'
- 'iot:ListJobExecutionsForJob'
- 'iot:ListJobExecutionsForThing'
- 'iot:DescribeJobExecution'
- 'iot:AssociateTargetsWithJob'
Effect: Allow
Resource:
- !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:job/*'
- !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:thing/*'
- !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:thinggroup/*'
- Sid: 'dynamodb'
Action:
- 'dynamodb:BatchGetItem'
- 'dynamodb:GetItem'
- 'dynamodb:Query'
- 'dynamodb:Scan'
- 'dynamodb:BatchWriteItem'
- 'dynamodb:PutItem'
- 'dynamodb:UpdateItem'
- 'dynamodb:DeleteItem'
Effect: Allow
Resource: !Sub 'arn:aws:dynamodb:${AWS::Region}:${AWS::AccountId}:table/cdf-commands-*'
- Sid: 'iampassrole'
Action:
- 'iam:PassRole'
Effect: Allow
Resource: !Sub 'arn:aws:iam::${AWS::AccountId}:role/cdf-commands-*'
- Sid: 's3bucket'
Action:
- 's3:ListBucket'
Effect: Allow
Resource:
- !Sub 'arn:aws:s3:::${BucketName}'
- Sid: 's3objects'
Action:
- 's3:Get*'
- 's3:Put*'
Effect: Allow
Resource:
- !Sub 'arn:aws:s3:::${BucketName}/*'
- Sid: 'mqtt'
Action:
- 'iot:Publish'
Effect: Allow
Resource:
- !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:topic/cdf/commands/*'
- Sid: lambda
Action:
- 'lambda:Invoke*'
Effect: Allow
Resource:
- !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${AssetLibraryFunctionName}'
- !Sub 'arn:aws:lambda:${AWS::Region}:${AWS::AccountId}:function:${ProvisioningFunctionName}'
PresignedUrlLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- iot.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- !Ref ApplicationPolicies
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
- arn:aws:iam::aws:policy/AWSLambdaExecute
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole
DependsOn:
- ApplicationPolicies
JobLifecycleLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- iot.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- !Ref ApplicationPolicies
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
- arn:aws:iam::aws:policy/AWSLambdaExecute
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole
DependsOn:
- ApplicationPolicies
RESTLambdaExecutionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
- iot.amazonaws.com
Action: sts:AssumeRole
Path: '/'
ManagedPolicyArns:
- !Ref ApplicationPolicies
- !If [KmsKeyIdProvided, !Ref KmsPolicy, !Ref 'AWS::NoValue']
- arn:aws:iam::aws:policy/AWSLambdaExecute
- arn:aws:iam::aws:policy/AWSXrayWriteOnlyAccess
- arn:aws:iam::aws:policy/service-role/AWSLambdaVPCAccessExecutionRole
DependsOn:
- ApplicationPolicies
PresignedUrlLambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub 'cdf-commands-presignedUrls-${Environment}'
CodeUri: ../bundle.zip
Handler: packages/services/commands/dist/presignedurl_iot_rule.presignedurl_rule_handler
MemorySize: 512
Role: !GetAtt PresignedUrlLambdaExecutionRole.Arn
Runtime: nodejs18.x
Timeout: 30
Environment:
Variables:
APP_CONFIG_DIR: 'packages/services/commands/dist/config'
APP_CONFIG: !Ref ApplicationConfigurationOverride
AWS_S3_BUCKET: !Ref BucketName
AWS_S3_ROLEARN: !Sub '${PresignedUrlLambdaExecutionRole.Arn}'
TABLES_TEMPLATES: !Ref TemplatesTable
TABLES_JOBS: !Ref JobsTable
ASSETLIBRARY_API_FUNCTION_NAME: !Ref AssetLibraryFunctionName
PROVISIONING_API_FUNCTION_NAME: !Ref ProvisioningFunctionName
Tracing: Active
JobLifecycleLambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub 'cdf-commands-jobLifecycle-${Environment}'
CodeUri: ../bundle.zip
Handler: packages/services/commands/dist/job_lifecycle_iot_rule.job_lifecycle_rule_handler
MemorySize: 512
Role: !GetAtt JobLifecycleLambdaExecutionRole.Arn
Runtime: nodejs18.x
Timeout: 30
Environment:
Variables:
APP_CONFIG_DIR: 'packages/services/commands/dist/config'
APP_CONFIG: !Ref ApplicationConfigurationOverride
AWS_S3_BUCKET: !Ref BucketName
AWS_S3_ROLEARN: !Sub '${PresignedUrlLambdaExecutionRole.Arn}'
TABLES_TEMPLATES: !Ref TemplatesTable
TABLES_JOBS: !Ref JobsTable
ASSETLIBRARY_API_FUNCTION_NAME: !Ref AssetLibraryFunctionName
PROVISIONING_API_FUNCTION_NAME: !Ref ProvisioningFunctionName
Tracing: Active
RESTLambdaFunction:
Type: AWS::Serverless::Function
Properties:
FunctionName: !Sub 'cdf-commands-rest-${Environment}'
CodeUri: ../bundle.zip
Handler: packages/services/commands/dist/lambda_proxy.handler
MemorySize: 512
Role: !GetAtt RESTLambdaExecutionRole.Arn
Runtime: nodejs18.x
Timeout: 30
Environment:
Variables:
APP_CONFIG_DIR: 'packages/services/commands/dist/config'
APP_CONFIG: !Ref ApplicationConfigurationOverride
AWS_S3_BUCKET: !Ref BucketName
AWS_S3_ROLEARN: !Sub '${PresignedUrlLambdaExecutionRole.Arn}'
TABLES_TEMPLATES: !Ref TemplatesTable
TABLES_JOBS: !Ref JobsTable
ASSETLIBRARY_API_FUNCTION_NAME: !Ref AssetLibraryFunctionName
PROVISIONING_API_FUNCTION_NAME: !Ref ProvisioningFunctionName
AWS_IOT_ENDPOINT: !Ref IotEndpoint
Tracing: Active
VpcConfig:
Fn::If:
- DeployInVPC
- SubnetIds: !Ref PrivateSubNetIds
SecurityGroupIds:
- !Ref CDFSecurityGroupId
- Ref: AWS::NoValue
Events:
ProxyApiRoot:
Type: Api
Properties:
RestApiId: !Ref ApiGatewayApi
Path: /
Method: ANY
ProxyApiGreedy:
Type: Api
Properties:
RestApiId: !Ref ApiGatewayApi
Path: /{proxy+}
Method: ANY
TemplatesTable:
Type: AWS::DynamoDB::Table
Metadata:
cfn_nag:
rules_to_suppress:
- id: W28
reason: 'safely naming this resources to be unique by environment'
- id: W73
reason: 'Can be decided by the customer, to specify the billing mode'
Properties:
TableName: !Sub 'cdf-commands-templates-${Environment}'
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
SSESpecification:
Fn::If:
- KmsKeyIdProvided
- KMSMasterKeyId: !Ref KmsKeyId
SSEEnabled: true
SSEType: KMS
- Ref: AWS::NoValue
AttributeDefinitions:
- AttributeName: 'templateId'
AttributeType: 'S'
KeySchema:
- AttributeName: 'templateId'
KeyType: 'HASH'
ProvisionedThroughput:
ReadCapacityUnits: '5'
WriteCapacityUnits: '5'
JobsTable:
Type: AWS::DynamoDB::Table
Metadata:
cfn_nag:
rules_to_suppress:
- id: W28
reason: 'safely naming this resources to be unique by environment'
- id: W73
reason: 'Can be decided by the customer, to specify the billing mode'
Properties:
TableName: !Sub 'cdf-commands-jobs-${Environment}'
PointInTimeRecoverySpecification:
PointInTimeRecoveryEnabled: true
SSESpecification:
Fn::If:
- KmsKeyIdProvided
- KMSMasterKeyId: !Ref KmsKeyId
SSEEnabled: true
SSEType: KMS
- Ref: AWS::NoValue
AttributeDefinitions:
- AttributeName: 'commandId'
AttributeType: 'S'
- AttributeName: 'jobId'
AttributeType: 'S'
KeySchema:
- AttributeName: 'commandId'
KeyType: 'HASH'
ProvisionedThroughput:
ReadCapacityUnits: '5'
WriteCapacityUnits: '5'
GlobalSecondaryIndexes:
- IndexName: !Sub 'cdf-commands-jobs-byJobId'
KeySchema:
- AttributeName: 'jobId'
KeyType: 'HASH'
Projection:
ProjectionType: INCLUDE
NonKeyAttributes:
- 'commandId'
ProvisionedThroughput:
ReadCapacityUnits: '5'
WriteCapacityUnits: '5'
IotEndpoint:
Type: Custom::IotEndpoint
Version: 1.0
Properties:
ServiceToken: !Ref CustomResourceLambdaArn
IotEvents:
Type: Custom::IotEvents
Version: 1.0
Properties:
ServiceToken: !Ref CustomResourceLambdaArn
Outputs:
RESTLambdaArn:
Description: REST API Lambda Arn
Value: !Sub '${RESTLambdaFunction.Arn}'
Export:
Name: !Sub 'cdf-commands-${Environment}-RESTLambdaArn'
RestApiFunctionName:
Description: Commands REST API lambda function name
Value: !Ref RESTLambdaFunction
Export:
Name: !Sub 'cdf-commands-${Environment}-restApiFunctionName'
ApiGatewayUrl:
Description: Commands REST API URL
Value: !Sub 'https://${ApiGatewayApi}.execute-api.${AWS::Region}.amazonaws.com/Prod'
Export:
Name: !Sub 'cdf-commands-${Environment}-apigatewayurl'
ApiGatewayHost:
Description: Commands REST API host
Value: !Sub '${ApiGatewayApi}.execute-api.${AWS::Region}.amazonaws.com'
Export:
Name: !Sub 'cdf-commands-${Environment}-apigatewayhost'