-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathkong-plugin-mtls-acl-1.0.0-0.rockspec
37 lines (31 loc) · 1.17 KB
/
kong-plugin-mtls-acl-1.0.0-0.rockspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
local plugin_name = "mtls-acl"
local package_name = "kong-plugin-"..plugin_name
local package_version = "1.0.0"
local rockspec_revision = "0"
package = package_name
version = package_version .. "-" .. rockspec_revision
supported_platforms = { "linux", "macosx" }
source = {
url = "git://github.com/callistaenterprise/kong-plugin-mtls-acl",
tag = "v1.0.0",
dir = "kong-plugin-mtls-acl"
}
description = {
summary = "Kong Gateway plugin used to restrict access based on information provided in an HTTP header",
detailed = [[
kong-plugin-mtls-acl is an Open Source plugin which restricts access based on certificate information
provided in an HTTP header. It is similar (but simpler) than the acl built-in plugin.
This plugin requires the mtls-auth plugin to have been already enabled on the Service or Route.
]],
homepage = "https://github.com/callistaenterprise/kong-plugin-mtls-acl",
license = "Apache 2.0",
}
dependencies = {
}
build = {
type = "builtin",
modules = {
["kong.plugins."..plugin_name..".handler"] = "kong/plugins/"..plugin_name.."/handler.lua",
["kong.plugins."..plugin_name..".schema"] = "kong/plugins/"..plugin_name.."/schema.lua",
}
}