forked from open-policy-agent/contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
kong-plugin-opa-0.1.1-2.rockspec
36 lines (36 loc) · 1.01 KB
/
kong-plugin-opa-0.1.1-2.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
rockspec_format = "3.0"
package = "kong-plugin-opa"
version = "0.1.1-2"
source = {
url = "git+https://github.com/open-policy-agent/contrib.git",
tag = "v0.1.1",
}
description = {
summary = "Integrate the Open Policy Agent (OPA) with Kong API Gateway for API access management",
detailed = [[
see https://github.com/open-policy-agent/contrib/tree/master/kong_plugin_opa for more information
]],
homepage = "https://github.com/open-policy-agent/contrib/tree/master/kong_plugin_opa",
issues_url = "https://github.com/open-policy-agent/contrib/issues",
}
dependencies = {
"lua-cjson",
"lua-resty-http",
"lua-resty-jwt",
}
test_dependencies = {
"luacov",
"luacheck",
}
test = {
type = "busted",
flags = { "-o", "gtest" },
}
build = {
type = "builtin",
modules = {
["kong.plugins.opa.access"] = "src/kong/plugins/opa/access.lua",
["kong.plugins.opa.handler"] = "src/kong/plugins/opa/handler.lua",
["kong.plugins.opa.schema"] = "src/kong/plugins/opa/schema.lua",
},
}