-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(aws-lambda) integrate with
aws-lambda
(#6)
This commit integrates the `liamp` plugin with the `aws-lambda` plugin. The `liamp` plugin will be renamed back to `aws-lambda`, stay in its own external repo, and then the upstream changes would be to remove Lambda there, and update the rockspec to include this external one. We're bumping from 0.2.0 to 3.0.0 to supersede the `aws-lambda` plugin in the Kong/kong open source repository (which was already at 2.0.0).
- Loading branch information
Showing
17 changed files
with
115 additions
and
151 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 |
---|---|---|
|
@@ -6,6 +6,7 @@ max_line_length = false | |
|
||
globals = { | ||
"_KONG", | ||
"kong", | ||
"ngx.IS_CLI", | ||
} | ||
|
||
|
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,3 +1,7 @@ | ||
## 3.0.0 | ||
|
||
- supersede the `aws-lambda` plugin from Kong core | ||
|
||
## 0.2.0 | ||
|
||
### Changed | ||
|
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
package = "kong-plugin-aws-lambda" | ||
version = "3.0.0-1" | ||
|
||
supported_platforms = {"linux", "macosx"} | ||
source = { | ||
url = "https://github.com/Kong/kong-plugin-aws-lambda/archive/3.0.0.tar.gz", | ||
dir = "kong-plugin-aws-lambda-3.0.0" | ||
} | ||
|
||
description = { | ||
summary = "Kong plugin to invoke AWS Lambda functions", | ||
homepage = "http://konghq.com", | ||
license = "Apache 2.0" | ||
} | ||
|
||
dependencies = { | ||
} | ||
|
||
build = { | ||
type = "builtin", | ||
modules = { | ||
["kong.plugins.aws-lambda.aws-serializer"] = "kong/plugins/aws-lambda/aws-serializer.lua", | ||
["kong.plugins.aws-lambda.handler"] = "kong/plugins/aws-lambda/handler.lua", | ||
["kong.plugins.aws-lambda.iam-ec2-credentials"] = "kong/plugins/aws-lambda/iam-ec2-credentials.lua", | ||
["kong.plugins.aws-lambda.iam-ecs-credentials"] = "kong/plugins/aws-lambda/iam-ecs-credentials.lua", | ||
["kong.plugins.aws-lambda.schema"] = "kong/plugins/aws-lambda/schema.lua", | ||
["kong.plugins.aws-lambda.v4"] = "kong/plugins/aws-lambda/v4.lua", | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.