-
Notifications
You must be signed in to change notification settings - Fork 5
/
aws_iot_heater_template.yaml
641 lines (621 loc) · 17.7 KB
/
aws_iot_heater_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
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
---
AWSTemplateFormatVersion: '2010-09-09'
Description: AWS IoT Smart Heater Template
Parameters:
DeviceID:
Description: ID of the device which represents a heater
Type: String
AllowedPattern: "[a-zA-Z0-9_/#+]*"
MinLength: '1'
MaxLength: '2048'
ConstraintDescription: must contain only alphanumberic characters and underscores
CognitoIdentityPoolName:
Type: String
Description: |
The name for the Cognito Identity Pool. If not provided, it's generated
after given DeviceID.
Default: ''
CognitoUserPoolName:
Type: String
Description: |
The name for the Cognito User Pool. If not provided, it's generated
after given DeviceID.
Default: ''
CognitoUserPoolClientName:
Type: String
Description: |
The name for the Cognito User Pool. If not provided, it's generated
after given DeviceID.
Default: ''
ReadCapacityUnits:
Description: Provisioned read throughput
Type: Number
Default: '5'
MinValue: '5'
MaxValue: '10000'
ConstraintDescription: must be between 5 and 10000
WriteCapacityUnits:
Description: Provisioned write throughput
Type: Number
Default: '10'
MinValue: '5'
MaxValue: '10000'
ConstraintDescription: must be between 5 and 10000
GoogleClientID:
Description: Google OAuth2 Client ID
Type: String
Default: ''
FacebookClientID:
Description: Facebook OAuth2 Client ID
Type: String
Default: ''
EndpointAddress:
Description: |
Endpoint address, can be fetched from the command line as follows:
aws iot describe-endpoint
Type: String
MinLength: '1'
MaxLength: '2048'
Conditions:
EMPTY_CognitoIdentityPoolName:
Fn::Equals:
- Ref: CognitoIdentityPoolName
- ''
EMPTY_CognitoUserPoolName:
Fn::Equals:
- Ref: CognitoUserPoolName
- ''
EMPTY_CognitoUserPoolClientName:
Fn::Equals:
- Ref: CognitoUserPoolClientName
- ''
EMPTY_GoogleClientID:
Fn::Equals:
- Ref: GoogleClientID
- ''
EMPTY_FacebookClientID:
Fn::Equals:
- Ref: FacebookClientID
- ''
Resources:
# Helpers for manipulating objects in S3 bucket {{{
ReferenceDB:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: key
AttributeType: S
KeySchema:
- AttributeName: key
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: 1
WriteCapacityUnits: 1
TableName:
Fn::Join:
- "-"
- - Ref: AWS::StackName
- reference
RoleBasePolicy:
Type: AWS::IAM::ManagedPolicy
Properties:
Description:
Fn::Join:
- " "
- - Base policy for all Lambda function roles in
- Ref: AWS::StackName
- "."
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: arn:aws:logs:*:*:*
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:PutItem
- dynamodb:Scan
Resource:
Fn::Join:
- ''
- - 'arn:aws:dynamodb:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":table/"
- Ref: ReferenceDB
S3PutObjectFunctionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
ManagedPolicyArns:
- Ref: RoleBasePolicy
Policies:
- PolicyName: S3Writer
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- s3:DeleteObject
- s3:ListBucket
- s3:PutObject
- s3:PutObjectAcl
Resource: "*"
S3PutObjectFunction:
Type: AWS::Lambda::Function
Properties:
Code: helpers/cloudformation-helpers
Description: Used to put objects into S3.
Handler: aws/s3.putObject
Role:
Fn::GetAtt:
- S3PutObjectFunctionRole
- Arn
Runtime: nodejs4.3
Timeout: 30
DependsOn:
- S3PutObjectFunctionRole
# }}}
# Helpers for Cognito {{{
CognitoFunctionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action: sts:AssumeRole
Path: "/"
Policies:
- PolicyName: cognito-writer
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:CreateLogGroup
- logs:CreateLogStream
- logs:PutLogEvents
Resource: arn:aws:logs:*:*:*
- Effect: Allow
Action:
- cognito-identity:CreateIdentityPool
- cognito-identity:DeleteIdentityPool
- cognito-identity:UpdateIdentityPool
- cognito-identity:SetIdentityPoolRoles
- cognito-idp:*
Resource: "*"
- Effect: Allow
Action:
- iam:PassRole
Resource: "*"
CognitoLambdaFunction:
Type: AWS::Lambda::Function
Properties:
Code: helpers/cloudformation-helpers
Description: Used to create Custom::CognitoIdentityPool and Custom::CognitoIdentityPoolRoles
Handler: aws/cognito.handler
MemorySize: 128
Role:
Fn::GetAtt:
- CognitoFunctionRole
- Arn
Runtime: nodejs4.3
Timeout: 30
DependsOn:
- S3PutObjectFunctionRole
# }}}
# S3 bucket and files in it {{{
myS3Bucket:
Type: AWS::S3::Bucket
Properties:
AccessControl: PublicRead
WebsiteConfiguration:
IndexDocument: index.html
heaterVarsFile:
Type: Custom::heaterVarsFile
Properties:
ServiceToken:
Fn::GetAtt:
- S3PutObjectFunction
- Arn
Bucket:
Ref: myS3Bucket
Key: vars.js
Body:
Fn::Join: ["\n", [
"var heaterVars = {",
{"Fn::Join": ["", [" region: '", { "Ref": "AWS::Region" }, "',"]]},
{"Fn::Join": ["", [" tableName: '", { "Ref": "myDynamoDBTable" }, "',"]]},
{"Fn::Join": ["", [" anonUserAccessKeyId: '", { "Ref": "myAnonymousAccessUserAccessKey" }, "',"]]},
{"Fn::Join": ["", [" anonUserSecretAccessKey: '", { "Fn::GetAtt": ["myAnonymousAccessUserAccessKey", "SecretAccessKey"] }, "',"]]},
{"Fn::Join": ["", [" deviceId: '", { "Ref": "DeviceID" }, "',"]]},
{"Fn::Join": ["", [" identityPoolId: '", { "Ref": "CognitoIdentityPool" }, "',"]]},
{"Fn::Join": ["", [" accountId: '", { "Ref": "AWS::AccountId" }, "',"]]},
{"Fn::Join": ["", [" addIotPolicyLambdaName: '", { "Ref": "myAddIotPolicyLambdaFunction" }, "',"]]},
{"Fn::Join": ["", [" googleOAuthClientId: '", { "Ref": "GoogleClientID" }, "',"]]},
{"Fn::Join": ["", [" facebookOAuthClientId: '", { "Ref": "FacebookClientID" }, "',"]]},
{"Fn::Join": ["", [" endpointAddress: '", { "Ref": "EndpointAddress" }, "',"]]},
"};",
""
]]
ACL: public-read
# }}}
# dynamoDB table to save temperature {{{
myDynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
AttributeDefinitions:
- AttributeName: deviceid
AttributeType: S
- AttributeName: timestamp
AttributeType: S
KeySchema:
- AttributeName: deviceid
KeyType: HASH
- AttributeName: timestamp
KeyType: RANGE
ProvisionedThroughput:
ReadCapacityUnits:
Ref: ReadCapacityUnits
WriteCapacityUnits:
Ref: WriteCapacityUnits
# }}}
# Topic rule to save temperature in the dynamoDB table, and a role for it {{{
myTopicRule:
Type: AWS::IoT::TopicRule
Properties:
TopicRulePayload:
RuleDisabled: 'false'
Sql:
Fn::Join: [ "", ["SELECT state.reported.temp FROM '$aws/things/", { "Ref": "DeviceID" }, "/shadow/update'"] ]
Actions:
- DynamoDB:
TableName:
Ref: myDynamoDBTable
HashKeyField: deviceid
HashKeyValue:
Ref: DeviceID
RangeKeyField: timestamp
RangeKeyValue: "${timestamp()}"
PayloadField: payload
RoleArn:
Fn::GetAtt:
- myDynamoDBTableRolePutItem
- Arn
myDynamoDBTableRolePutItem:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- iot.amazonaws.com
Action:
- sts:AssumeRole
Path: "/"
Policies:
- PolicyName: allow-put-item
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action: dynamodb:PutItem
Resource:
Fn::Join:
- ''
- - 'arn:aws:dynamodb:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":table/"
- Ref: myDynamoDBTable
- Effect: Allow
Action: "iot:*"
Resource: "*"
# }}}
# User for anonymous access, and its access key {{{
myAnonymousAccessUser:
Type: AWS::IAM::User
Properties:
Policies:
- PolicyName: allow-read
PolicyDocument:
Version: '2012-10-17'
Statement:
# The user can read dynamoDB table
- Effect: Allow
Action:
- dynamodb:GetItem
- dynamodb:BatchGetItem
- dynamodb:Scan
- dynamodb:Query
Resource:
Fn::Join:
- ''
- - 'arn:aws:dynamodb:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":table/"
- Ref: myDynamoDBTable
# The user can also call the Lambda which will attach IoT policy
# to a user
- Effect: Allow
Action:
- lambda:InvokeFunction
Resource:
Fn::GetAtt:
- myAddIotPolicyLambdaFunction
- Arn
myAnonymousAccessUserAccessKey:
Type: AWS::IAM::AccessKey
Properties:
UserName: { Ref: "myAnonymousAccessUser" }
# }}}
# Cognito {{{
CognitoIdentityPool:
Type: Custom::CognitoIdentityPool
Properties:
ServiceToken:
Fn::GetAtt:
- CognitoLambdaFunction
- Arn
Options:
AllowUnauthenticatedIdentities: "true"
IdentityPoolName:
Fn::If:
- EMPTY_CognitoIdentityPoolName
- { "Fn::Join": ["", ["identity_pool_for_", {"Ref": "DeviceID"}]] }
- Ref: CognitoIdentityPoolName
SupportedLoginProviders:
accounts.google.com:
Fn::If:
- EMPTY_GoogleClientID
- Ref: AWS::NoValue
- Ref: GoogleClientID
graph.facebook.com:
Fn::If:
- EMPTY_FacebookClientID
- Ref: AWS::NoValue
- Ref: FacebookClientID
CognitoIdentityPoolRoles:
Type: Custom::CognitoIdentityPoolRoles
Properties:
ServiceToken:
Fn::GetAtt:
- CognitoLambdaFunction
- Arn
Options:
IdentityPoolId:
Fn::GetAtt:
- CognitoIdentityPool
- IdentityPoolId
Roles:
authenticated:
Fn::GetAtt:
- CognitoAuthenticatedRole
- Arn
unauthenticated:
Fn::GetAtt:
- CognitoUnauthenticatedRole
- Arn
CognitoUnauthenticatedRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Federated: cognito-identity.amazonaws.com
Action: sts:AssumeRoleWithWebIdentity
Condition:
StringEquals:
cognito-identity.amazonaws.com:aud:
Fn::GetAtt:
- CognitoIdentityPool
- IdentityPoolId
ForAnyValue:StringLike:
cognito-identity.amazonaws.com:amr: unauthenticated
Policies:
- PolicyName: root
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- "iot:GetThingShadow"
Resource:
Fn::Join:
- ''
- - 'arn:aws:iot:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":thing/"
- Ref: DeviceID
CognitoAuthenticatedRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Federated: cognito-identity.amazonaws.com
Action: sts:AssumeRoleWithWebIdentity
Condition:
StringEquals:
cognito-identity.amazonaws.com:aud:
Fn::GetAtt:
- CognitoIdentityPool
- IdentityPoolId
ForAnyValue:StringLike:
cognito-identity.amazonaws.com:amr: authenticated
Policies:
# This policy is equal to the one for unauthenticated users;
# unfortunately we can't reuse the same policy for both authenticated
# and unauthenticated users: it complains that the pool is misconfigured
- PolicyName: root
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- "iot:GetThingShadow"
Resource:
Fn::Join:
- ''
- - 'arn:aws:iot:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":thing/"
- Ref: DeviceID
# Heater Admin role
myHeaterAdminRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Federated: cognito-identity.amazonaws.com
Action: sts:AssumeRoleWithWebIdentity
Policies:
- PolicyName: root
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- "iot:GetThingShadow"
Resource:
Fn::Join:
- ''
- - 'arn:aws:iot:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":thing/"
- Ref: DeviceID
- Effect: Allow
Action:
- "iot:UpdateThingShadow"
Resource:
Fn::Join:
- ''
- - 'arn:aws:iot:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":thing/"
- Ref: DeviceID
# }}}
# Permissive IoT policy {{{
# Permissive IoT policy, applied to all registered users
myIotPolicy:
Type: AWS::IoT::Policy
Properties:
PolicyDocument:
Version: "2012-10-17"
Statement:
- Effect: Allow
Action: "iot:*"
Resource: "*"
# Lambda function which attaches myIotPolicy to the given user. Every time
# the user logs in, JS code in the browser calls this lambda, so that the
# user can perform MQTT operations.
myAddIotPolicyLambdaFunction:
Type: AWS::Lambda::Function
Properties:
Code:
ZipFile:
Fn::Join:
- "\n"
- - "var AWS = require('aws-sdk');"
- "exports.handler = (event, context, callback) => {"
- " var iot = new AWS.Iot();"
- " iot.attachPrincipalPolicy({"
- {"Fn::Join": ["", ["policyName: '", { "Ref": "myIotPolicy" }, "',"]]}
- " principal: event.identityId,"
- " }, function(err, data) {"
- " if(err) {"
- " console.error('error', err);"
- " context.done(err);"
- " } else {"
- " console.info('ok', data);"
- " context.done(null, {status: 'ok'});"
- " }"
- " });"
- "};"
Handler: index.handler
Runtime: nodejs4.3
Role:
Fn::GetAtt:
- myAddIotPolicyLambdaFunctionRole
- Arn
myAddIotPolicyLambdaFunctionRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service:
- lambda.amazonaws.com
Action:
- sts:AssumeRole
Policies:
- PolicyName: root
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- iot:AttachPrincipalPolicy
Resource: "*"
# }}}
Outputs:
S3BucketName:
Value:
Ref: myS3Bucket
Description: Name of the newly created S3 bucket
S3BucketWebsite:
Value:
Fn::Join:
- ""
- - "http://"
- Ref: myS3Bucket
- ".s3-website-"
- Ref: AWS::Region
- ".amazonaws.com"
Description: URL of the s3 bucket
TableName:
Value:
Ref: myDynamoDBTable
Description: Table name of the newly created DynamoDB table
RuleName:
Value:
Ref: myTopicRule
Description: Name of the newly created topic rule