change kong plugin path (#41)

Co-authored-by: wiaamm <wiaamm@checkpoint.com>
This commit is contained in:
Daniel-Eisenberg
2025-07-08 16:14:04 +03:00
committed by GitHub
parent 5ee4902e43
commit 5b2920fc67
5 changed files with 4 additions and 4 deletions

View File

@@ -0,0 +1,16 @@
local typedefs = require "kong.db.schema.typedefs"
return {
name = "open-appsec-waf-kong-plugin",
fields = {
{ consumer = typedefs.no_consumer }, -- required for Konnect compatibility
{ protocols = typedefs.protocols_http }, -- required so Konnect knows when to allow this plugin
{ config = {
type = "record",
fields = {
{ debug = { type = "boolean", default = false } },
},
},
},
},
}