-
Notifications
You must be signed in to change notification settings - Fork 598
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Patched date tests and rule descriptions EOL lambda runtimes (#999)
- Loading branch information
Showing
6 changed files
with
38 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -109,3 +109,6 @@ venv.bak/ | |
|
||
# vscode | ||
.vscode/ | ||
|
||
# osx | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,27 @@ | ||
[ | ||
{ | ||
"Filename": "test/fixtures/templates/public/lambda-poller.yaml", | ||
"Level": "Warning", | ||
"Location": { | ||
"End": { | ||
"ColumnNumber": 14, | ||
"LineNumber": 151 | ||
}, | ||
"Path": [ | ||
"Resources", | ||
"PollerFunction", | ||
"Properties", | ||
"Runtime" | ||
], | ||
"Start": { | ||
"ColumnNumber": 7, | ||
"LineNumber": 151 | ||
} | ||
[{ | ||
"Filename": "test/fixtures/templates/public/lambda-poller.yaml", | ||
"Level": "Warning", | ||
"Location": { | ||
"End": { | ||
"ColumnNumber": 14, | ||
"LineNumber": 151 | ||
}, | ||
"Message": "EOL runtime (nodejs6.10) specified. Runtime is EOL since 2019-04-30 and updating will be disabled at 2019-06-30, please consider to update to nodejs10.x", | ||
"Rule": { | ||
"Description": "Check if an EOL Lambda Runtime is specified and give a warning if used. ", | ||
"Id": "W2531", | ||
"ShortDescription": "Check if EOL Lambda Function Runtimes are used", | ||
"Source": "https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html" | ||
"Path": [ | ||
"Resources", | ||
"PollerFunction", | ||
"Properties", | ||
"Runtime" | ||
], | ||
"Start": { | ||
"ColumnNumber": 7, | ||
"LineNumber": 151 | ||
} | ||
}, | ||
"Message": "EOL runtime (nodejs6.10) specified. Runtime is EOL since 2019-04-30 and updating will be disabled at 2019-06-30, please consider to update to nodejs10.x", | ||
"Rule": { | ||
"Description": "Check if an EOL Lambda Runtime is specified and give an error if used. ", | ||
"Id": "E2531", | ||
"ShortDescription": "Check if EOL Lambda Function Runtimes are used", | ||
"Source": "https://docs.aws.amazon.com/lambda/latest/dg/runtime-support-policy.html" | ||
} | ||
] | ||
}] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters