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 .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ python:
- '2.7'
install:
- 'pip install yamllint==1.15.0'
- 'pip install cfn-lint==0.14.0'
- 'pip install cfn-lint==0.20.2'
script:
- 'yamllint module.yml'
- 'cfn-lint -i W3002 -t module.yml'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ Resources:
<td>The runtime environment for the Lambda function that you are uploading</td>
<td></td>
<td>no</td>
<td>['nodejs6.10', 'nodejs8.10', java8, 'python2.7', 'python3.6', 'dotnetcore1.0', 'dotnetcore2.0', 'go1.x']</td>
<td>['dotnetcore1.0', 'dotnetcore2.1', 'go1.x', 'java8', 'nodejs10.x', 'nodejs8.10', 'python2.7', 'python3.6', 'python3.7', 'ruby2.5']</td>
</tr>
<tr>
<td>Timeout</td>
Expand Down
6 changes: 3 additions & 3 deletions module.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ Parameters:
Runtime:
Description: 'The runtime environment for the Lambda function that you are uploading'
Type: String
AllowedValues: ['nodejs6.10', 'nodejs8.10', java8, 'python2.7', 'python3.6', 'dotnetcore1.0', 'dotnetcore2.0', 'go1.x']
AllowedValues: ['dotnetcore1.0', 'dotnetcore2.1', 'go1.x', 'java8', 'nodejs10.x', 'nodejs8.10', 'python2.7', 'python3.6', 'python3.7', 'ruby2.5']
Timeout:
Description: 'The function execution time at which Lambda should terminate the function'
Type: Number
Expand Down Expand Up @@ -109,7 +109,7 @@ Parameters:
Type: String
Default: ''
ManagedPolicyArns:
Description: 'Optional comma-delimited list of IAM managed policy ARNs to attach to the task''s IAM role'
Description: 'Optional comma-delimited list of IAM managed policy ARNs to attach to the function''s IAM role'
Type: String
Default: ''
LayerArns:
Expand Down Expand Up @@ -281,7 +281,7 @@ Outputs:
ModuleId:
Value: 'lambda-function'
ModuleVersion:
Value: '2.2.0'
Value: '2.3.0'
StackName:
Value: !Ref 'AWS::StackName'
Arn:
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.2.0",
"version": "2.3.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