Skip to content
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

Add support for dotnetcore2.1 as Lambda runtime #302

Merged
merged 2 commits into from
Aug 29, 2018
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: 2 additions & 0 deletions overlays/nodejs/lambda/runtimes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
export type Runtime =
"dotnetcore1.0" |
"dotnetcore2.0" |
"dotnetcore2.1" |
"go1.x" |
"java8" |
"nodejs4.3-edge" |
Expand All @@ -30,6 +31,7 @@ export type Runtime =

export let DotnetCore1d0Runtime: Runtime = "dotnetcore1.0";
export let DotnetCore2d0Runtime: Runtime = "dotnetcore2.0";
export let DotnetCore2d1Runtime: Runtime = "dotnetcore2.1";
export let Go1dxRuntime: Runtime = "go1.x";
export let Java8Runtime: Runtime = "java8";
export let NodeJS4d3EdgeRuntime: Runtime = "nodejs4.3-edge";
Expand Down
2 changes: 2 additions & 0 deletions sdk/nodejs/lambda/runtimes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
export type Runtime =
"dotnetcore1.0" |
"dotnetcore2.0" |
"dotnetcore2.1" |
"go1.x" |
"java8" |
"nodejs4.3-edge" |
Expand All @@ -30,6 +31,7 @@ export type Runtime =

export let DotnetCore1d0Runtime: Runtime = "dotnetcore1.0";
export let DotnetCore2d0Runtime: Runtime = "dotnetcore2.0";
export let DotnetCore2d1Runtime: Runtime = "dotnetcore2.1";
export let Go1dxRuntime: Runtime = "go1.x";
export let Java8Runtime: Runtime = "java8";
export let NodeJS4d3EdgeRuntime: Runtime = "nodejs4.3-edge";
Expand Down