Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Resources:
Handler: 'example.handler' # required (file must be in the `lambda-src` folder)
MemorySize: '128' # optional
ReservedConcurrentExecutions: '-1' # optional
Runtime: 'nodejs8.10' # required
Runtime: 'nodejs10.x' # required
Timeout: '3' # optional
TracingConfigMode: PassThrough # optional
LogGroupRetentionInDays: '14' # optional
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cfn-modules/lambda-function",
"version": "2.4.1",
"version": "2.5.0",
"description": "AWS Lambda function with automated IAM policy generation, encryption, log group and alerting",
"author": "Michael Wittig <[email protected]>",
"license": "Apache-2.0",
Expand Down
2 changes: 1 addition & 1 deletion test/defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@ Resources:
Properties:
Parameters:
Handler: 'defaults.handler'
Runtime: 'nodejs8.10'
Runtime: 'nodejs10.x'
TemplateURL: './node_modules/@cfn-modules/lambda-function/module.yml'
2 changes: 1 addition & 1 deletion test/layer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@ Resources:
Properties:
Parameters:
Handler: 'defaults.handler'
Runtime: 'nodejs8.10'
Runtime: 'nodejs10.x'
LayerArns: !Ref Layer
TemplateURL: './node_modules/@cfn-modules/lambda-function/module.yml'
2 changes: 1 addition & 1 deletion test/named.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,6 @@ Resources:
Properties:
Parameters:
Handler: 'defaults.handler'
Runtime: 'nodejs8.10'
Runtime: 'nodejs10.x'
FunctionName: 'NamedLambda'
TemplateURL: './node_modules/@cfn-modules/lambda-function/module.yml'
Loading