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
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,10 @@ There are two things necessary to make a custom plugin work in Kong:
The easiest way to install the plugin is using `luarocks`.

```sh
luarocks install https://github.com/LEGO/kong-aws-request-signing/raw/main/rocks/kong-aws-request-signing-1.0.5-3.all.rock
luarocks install https://github.com/LEGO/kong-aws-request-signing/raw/main/rocks/kong-aws-request-signing-1.0.8-3.all.rock
```

You can substitute `1.0.0-3` in the command above with any other version you want to install.
You can substitute `1.0.8-3` in the command above with any other version you want to install.

If running Kong using the Helm chart, you will need to create a config map with the plugin files and mount it to `/opt/kong/plugins/aws-request-signing`. You can read more about this on [Kong's website.](https://docs.konghq.com/kubernetes-ingress-controller/latest/guides/setting-up-custom-plugins/)

Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
local plugin_name = "aws-request-signing"
local package_name = "kong-" .. plugin_name
local package_version = "1.0.7"
local package_version = "1.0.8"
local rockspec_revision = "3"

local github_account_name = "LEGO"
Expand Down
2 changes: 1 addition & 1 deletion kong/plugins/aws-request-signing/handler.lua
Original file line number Diff line number Diff line change
Expand Up @@ -222,6 +222,6 @@ function AWSLambdaSTS:access(conf)
end

AWSLambdaSTS.PRIORITY = 15
AWSLambdaSTS.VERSION = "1.0.7"
AWSLambdaSTS.VERSION = "1.0.8"

return AWSLambdaSTS
Loading