Skip to content

Updating node verson #422

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 7 commits into from
May 5, 2020
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion aws-multiple-runtime/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ functions:
path: greet
handler: web/handler.hello
time:
runtime: nodejs6.10
runtime: nodejs8.10
events:
- http:
method: get
Expand Down
2 changes: 1 addition & 1 deletion aws-node-dynamodb-backup/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ custom:

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
stage: staging
iamRoleStatements:
- Effect: Allow
Expand Down
2 changes: 1 addition & 1 deletion aws-node-graphql-api-with-dynamodb/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ service: graphql-api

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
environment:
DYNAMODB_TABLE: ${self:service}-${self:provider.stage}
iamRoleStatements:
Expand Down
2 changes: 1 addition & 1 deletion aws-node-oauth-dropbox-api/serverless.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
service: dropbox
provider:
profile: personal
runtime: nodejs6.10
runtime: nodejs8.10
name: aws
region: ap-south-1
timeout: 60
Expand Down
2 changes: 1 addition & 1 deletion aws-node-rekognition-analysis-s3-image/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ frameworkVersion: ">=1.10.0"

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
memorySize: 512
timeout: 10
stage: dev
Expand Down
2 changes: 1 addition & 1 deletion aws-node-rest-api-mongodb/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ service: aws-node-rest-api-mongodb

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10

functions:
createUser:
Expand Down
2 changes: 1 addition & 1 deletion aws-node-rest-api-with-dynamodb/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ frameworkVersion: ">=1.1.0 <2.0.0"

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
environment:
DYNAMODB_TABLE: ${self:service}-${opt:stage, self:provider.stage}
iamRoleStatements:
Expand Down
2 changes: 1 addition & 1 deletion aws-node-simple-transcribe-s3/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ service: aws-node-simple-transcribe-s3

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
environment:
S3_AUDIO_BUCKET: ${self:service}-${opt:stage, self:provider.stage}-records
S3_TRANSCRIPTION_BUCKET: ${self:service}-${opt:stage, self:provider.stage}-transcriptions
Expand Down
2 changes: 1 addition & 1 deletion aws-node-stripe-integration/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ service: aws-node-stripe-integration

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
stage: test
region: us-east-1

Expand Down
2 changes: 1 addition & 1 deletion aws-node-typescript-rest-api-with-dynamodb/serverless.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ frameworkVersion: ">=1.1.0 <2.0.0"

provider:
name: aws
runtime: nodejs6.10
runtime: nodejs8.10
region: eu-west-2
environment:
DYNAMODB_TABLE: ${self:service}-${opt:stage, self:provider.stage}
Expand Down