Skip to content

Commit 3bb5fe3

Browse files
author
Ray Janoka
committed
Upgrading lambda runtime to nodejs10.x
1 parent 801c91c commit 3bb5fe3

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: node_js
22
node_js:
3-
- "8"
3+
- "10.16.3"
44
install:
55
# Install deps
66
- npm install

babelrc-node.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
module.exports = {
22
"presets": [["@babel/preset-env", {
33
"targets": {
4-
"node": "8.10"
4+
"node": "10.16.3"
55
}
66
}]],
77
"env": {}
8-
}
8+
};

cloud_formation/event_multi_region_template/autotag_event_main-template.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
FunctionName: 'AutoTag',
5656
Handler: sub('autotag_event.handler'),
5757
Role: get_att('AutoTagExecutionRole', 'Arn'),
58-
Runtime: 'nodejs8.10',
58+
Runtime: 'nodejs10.x',
5959
# the ec2 instance worker will wait for up to 45 seconds for a
6060
# opsworks stack or autoscaling group to be tagged with the creator
6161
# in case the events come out of order

cloud_formation/event_single_region_template/autotag_event-template.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
"FunctionName" : "AutoTag",
6666
"Handler" : "autotag_event.handler",
6767
"Role" : { "Fn::GetAtt" : [ "AutoTagExecutionRole", "Arn" ] },
68-
"Runtime" : "nodejs8.10",
68+
"Runtime" : "nodejs10.x",
6969
"Timeout" : 120,
7070
"Environment": {
7171
"Variables": {

0 commit comments

Comments
 (0)