forked from awslabs/aws-iot-certificate-vending-machine
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate.yaml
163 lines (160 loc) · 4.71 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
AWSTemplateFormatVersion: '2010-09-09'
Transform: 'AWS::Serverless-2016-10-31'
Description: Lambda and API Gateway for CVM
Parameters:
DeviceTableName:
Description: The Dynamodb table name of your device info.
Type: String
Default: deviceInfo
IotDataEndpoint:
Description: The IoT data endpoint for updating shadow.
Type: String
Outputs:
LambdaArn:
Description: "Lambda Arn"
Value: !GetAtt LambdaRole.Arn
Api:
Description: "API Gateway endpoint URL for Prod stage"
Value: !Sub "https://${ServerlessRestApi}.execute-api.${AWS::Region}.amazonaws.com/Prod"
Resources:
CVMIoTResource:
Type: 'AWS::Serverless::Function'
Properties:
Runtime: nodejs16.x
MemorySize: 1024
Timeout: 15
CodeUri: ./lambda
Handler: index.handler
Description: API used for CVM requests
Role: !GetAtt LambdaRole.Arn
Environment:
Variables:
REGION: !Ref AWS::Region
DYNAMODB_TABLE_NAME: !Ref DeviceInfoDynamoDBTable
IOT_DATA_ENDPOINT: !Ref IotDataEndpoint
Events:
CVMIoTApi:
Type: Api
Properties:
Path: /getcert
Method: GET
ShadowIoTApi:
Type: Api
Properties:
Path: /shadow
Method: ANY
DeviceInfoDynamoDBTable:
Type: AWS::DynamoDB::Table
Properties:
TableName:
Ref: DeviceTableName
AttributeDefinitions:
- AttributeName: serialNumber
AttributeType: S
KeySchema:
- AttributeName: serialNumber
KeyType: HASH
ProvisionedThroughput:
ReadCapacityUnits: '5'
WriteCapacityUnits: '5'
LambdaRole:
Type: AWS::IAM::Role
Properties:
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Principal:
Service: lambda.amazonaws.com
Action:
- sts:AssumeRole
Path: "/"
Policies:
- PolicyName: logs
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: Allow
Action:
- logs:*
Resource: arn:aws:logs:*:*:*
- PolicyName: dynamodb
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: '1'
Effect: Allow
Action:
- dynamodb:Query
- dynamodb:UpdateItem
Resource:
- Fn::Join:
- ''
- - 'arn:aws:dynamodb:'
- Ref: AWS::Region
- ":"
- Ref: AWS::AccountId
- ":table/"
- Ref: DeviceTableName
- PolicyName: IoTPolicy
PolicyDocument:
Version: '2012-10-17'
Statement:
- Sid: '1'
Effect: Allow
Action:
- iot:CreateThing
- iot:AttachPolicy
- iot:DetachPolicy
- iot:AttachThingPrincipal
- iot:DetachThingPrincipal
- iot:CreatePolicy
- iot:CreateKeysAndCertificate
- iot:UpdateCertificate
- iot:DeleteCertificate
- iot:GetThingShadow
- iot:UpdateThingShadow
Resource: "*"
GreengrassV2TokenExchangeRole:
Type: 'AWS::IAM::Role'
Properties:
RoleName: 'GreengrassV2TokenExchangeRole'
AssumeRolePolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Principal:
Service: 'credentials.iot.amazonaws.com'
Action: 'sts:AssumeRole'
GreengrassV2TokenExchangeRoleAccessPolicy:
Type: 'AWS::IAM::Policy'
Properties:
PolicyName: 'GreengrassV2TokenExchangeRoleAccess'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Action:
- 'logs:CreateLogGroup'
- 'logs:CreateLogStream'
- 'logs:PutLogEvents'
- 'logs:DescribeLogStreams'
- 's3:GetBucketLocation'
Resource: '*'
Roles:
- Ref: 'GreengrassV2TokenExchangeRole'
GreengrassCoreTokenExchangeRoleAlias:
Type: 'AWS::IoT::RoleAlias'
Properties:
RoleAlias: 'GreengrassCoreTokenExchangeRoleAlias'
RoleArn: !GetAtt GreengrassV2TokenExchangeRole.Arn
GreengrassCoreTokenExchangeRoleAliasPolicy:
Type: 'AWS::IoT::Policy'
Properties:
PolicyName: 'GreengrassCoreTokenExchangeRoleAliasPolicy'
PolicyDocument:
Version: '2012-10-17'
Statement:
- Effect: 'Allow'
Action: 'iot:AssumeRoleWithCertificate'
Resource: !Sub 'arn:aws:iot:${AWS::Region}:${AWS::AccountId}:rolealias/GreengrassCoreTokenExchangeRoleAlias'