Skip to content
This repository has been archived by the owner on Sep 17, 2024. It is now read-only.

Commit

Permalink
Merge pull request #66 from GorillaStack/nodejs10.x
Browse files Browse the repository at this point in the history
Upgrading lambda runtime to nodejs10.x
  • Loading branch information
Ray authored Nov 13, 2019
2 parents 07a3a74 + 3bb5fe3 commit 3054257
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
language: node_js
node_js:
- "8"
- "10.16.3"
install:
# Install deps
- npm install
Expand Down
4 changes: 2 additions & 2 deletions babelrc-node.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module.exports = {
"presets": [["@babel/preset-env", {
"targets": {
"node": "8.10"
"node": "10.16.3"
}
}]],
"env": {}
}
};
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
FunctionName: 'AutoTag',
Handler: sub('autotag_event.handler'),
Role: get_att('AutoTagExecutionRole', 'Arn'),
Runtime: 'nodejs8.10',
Runtime: 'nodejs10.x',
# the ec2 instance worker will wait for up to 45 seconds for a
# opsworks stack or autoscaling group to be tagged with the creator
# in case the events come out of order
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"FunctionName" : "AutoTag",
"Handler" : "autotag_event.handler",
"Role" : { "Fn::GetAtt" : [ "AutoTagExecutionRole", "Arn" ] },
"Runtime" : "nodejs8.10",
"Runtime" : "nodejs10.x",
"Timeout" : 120,
"Environment": {
"Variables": {
Expand Down

0 comments on commit 3054257

Please sign in to comment.