Skip to content
This repository was archived by the owner on Jan 14, 2025. It is now read-only.

Commit fef443e

Browse files
authored
Merge pull request #264 from chriscoombs/207-nodejs-deprecation
Issue #207, nodejs8.10 deprecated (create) on January 6, 2020
2 parents 0058e57 + 5474c0a commit fef443e

File tree

5 files changed

+14
-14
lines changed

5 files changed

+14
-14
lines changed

Auth/2_ServerlessAPI/ServerlessBackend.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ Resources:
5555
Type: AWS::Lambda::Function
5656
Properties:
5757
FunctionName: RequestUnicorn
58-
Runtime: nodejs8.10
58+
Runtime: nodejs10.x
5959
Role: !GetAtt RequestUnicornExecutionRole.Arn
6060
Timeout: 5
6161
MemorySize: 128

ImageProcessing/src/cloudformation/module-setup.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Resources:
7676
Properties:
7777
Description: "Use Amazon Rekognition to detect faces"
7878
Handler: index.handler
79-
Runtime: nodejs8.10
79+
Runtime: nodejs10.x
8080
MemorySize: 256
8181
Timeout: 60
8282
Policies:
@@ -101,7 +101,7 @@ Resources:
101101
Properties:
102102
Description: "mock notification sender"
103103
Handler: index.handler
104-
Runtime: nodejs8.10
104+
Runtime: nodejs10.x
105105
MemorySize: 256
106106
Timeout: 60
107107
CodeUri:
@@ -112,7 +112,7 @@ Resources:
112112
Properties:
113113
Description: "Use Amazon Rekognition to check if the face is already in the collection"
114114
Handler: index.handler
115-
Runtime: nodejs8.10
115+
Runtime: nodejs10.x
116116
MemorySize: 256
117117
Timeout: 60
118118
Policies:
@@ -139,7 +139,7 @@ Resources:
139139
Properties:
140140
Description: "Index the photo into Rekognition collection"
141141
Handler: index.handler
142-
Runtime: nodejs8.10
142+
Runtime: nodejs10.x
143143
MemorySize: 256
144144
Timeout: 60
145145
Policies:
@@ -167,7 +167,7 @@ Resources:
167167
Type: AWS::Serverless::Function
168168
Properties:
169169
Handler: index.handler
170-
Runtime: nodejs8.10
170+
Runtime: nodejs10.x
171171
MemorySize: 1536
172172
Timeout: 300
173173
Policies:
@@ -195,7 +195,7 @@ Resources:
195195
Properties:
196196
Description: "Save metadata of the photo to DynamoDB table"
197197
Handler: index.handler
198-
Runtime: nodejs8.10
198+
Runtime: nodejs10.x
199199
MemorySize: 256
200200
Timeout: 60
201201
Environment:

MultiRegion/1_API/wild-rydes-api-failover-region.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Resources:
100100
Type: AWS::Serverless::Function
101101
Properties:
102102
Handler: tickets-get.handler
103-
Runtime: nodejs8.10
103+
Runtime: nodejs10.x
104104
FunctionName: TicketGetFunction
105105
Policies:
106106
- AWSLambdaDynamoDBExecutionRole #managed policy
@@ -126,7 +126,7 @@ Resources:
126126
Type: AWS::Serverless::Function
127127
Properties:
128128
Handler: tickets-post.handler
129-
Runtime: nodejs8.10
129+
Runtime: nodejs10.x
130130
FunctionName: TicketPostFunction
131131
Policies:
132132
- AWSLambdaDynamoDBExecutionRole #managed policy
@@ -151,7 +151,7 @@ Resources:
151151
Type: AWS::Serverless::Function
152152
Properties:
153153
Handler: health-check.handler
154-
Runtime: nodejs8.10
154+
Runtime: nodejs10.x
155155
FunctionName: SXRHealthCheckFunction
156156
Policies:
157157
- AWSLambdaDynamoDBExecutionRole #managed policy

MultiRegion/1_API/wild-rydes-api-primary-region.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Resources:
100100
Type: AWS::Serverless::Function
101101
Properties:
102102
Handler: tickets-get.handler
103-
Runtime: nodejs8.10
103+
Runtime: nodejs10.x
104104
FunctionName: TicketGetFunction
105105
Policies:
106106
- AWSLambdaDynamoDBExecutionRole #managed policy
@@ -126,7 +126,7 @@ Resources:
126126
Type: AWS::Serverless::Function
127127
Properties:
128128
Handler: tickets-post.handler
129-
Runtime: nodejs8.10
129+
Runtime: nodejs10.x
130130
FunctionName: TicketPostFunction
131131
Policies:
132132
- AWSLambdaDynamoDBExecutionRole #managed policy
@@ -151,7 +151,7 @@ Resources:
151151
Type: AWS::Serverless::Function
152152
Properties:
153153
Handler: health-check.handler
154-
Runtime: nodejs8.10
154+
Runtime: nodejs10.x
155155
FunctionName: SXRHealthCheckFunction
156156
Policies:
157157
- AWSLambdaDynamoDBExecutionRole #managed policy

WebApplication/5_OAuth/prerequisites.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,7 @@ Resources:
370370
Type: AWS::Lambda::Function
371371
Properties:
372372
FunctionName: RequestUnicorn
373-
Runtime: nodejs8.10
373+
Runtime: nodejs10.x
374374
Role: !GetAtt RequestUnicornExecutionRole.Arn
375375
Timeout: 5
376376
MemorySize: 128

0 commit comments

Comments
 (0)