This plugin will add a signed JWT into the HTTP Header JWT
or config.header
of proxied requests through the Kong gateway. The purpose of this, is to provide means of Authentication, Authorization and Non-Repudiation to API providers (APIs for which Kong is a gateway).
In short, API Providers need a means of cryptographically validating that requests they receive were A. proxied by Kong, and B. not tampered with during transmission from Kong -> API Provider. This token accomplishes both as follows:
- Authentication & Authorization - Provided by means of JWT signature validation. The API Provider will validate the signature on the JWT token (which is generating using Kong's RSA x509 private key), using Kong's public key. This public key can be maintained in a keystore, or sent with the token - provided API providers validate the signature chain against their truststore.
- Non-Repudiation - SHA256 is used to hash the body of the HTTP Request Body, and the resulting digest is included in the
payloadhash
element of the JWT body. API Providers will take the SHA256 hash of the HTTP Request Body, and compare the digest to that found in the JWT. If they are identical, the request remained intact during transmission.
Kong >= 3.x
Recommended:
$ luarocks install kong-upstream-jwt
Other:
$ git clone https://github.com/Optum/kong-upstream-jwt.git /path/to/kong/plugins/kong-upstream-jwt
$ cd /path/to/kong/plugins/kong-upstream-jwt
$ luarocks make *.rockspec
The following is an example of the contents of the decoded JWT token:
Header:
{
"x5c": ["...der-encoded cert data..."],
"alg": "RS256",
"typ": "JWT",
"kid": "..conf.key_id.." // Only present if conf.key_id configuration variable set
}
Payload:
{
"aud": "kong-service-name", // The Kong Service Name
"iss": "issuer", // Only set if issuer configuration variable available
"iat": 1550258274, // Only set if issuer configuration variable available
"exp": 1550258334, // 1 minute exp time
"jti": "d4f10edb-c4f0-47d3-b7e0-90a30a885a0b", // Unique to every request - UUID
"consumername": "consumer-username", // Consumer Username
"consumerid": "consumer-id", // Consumer ID
"payloadhash": "...sha256 hash of request payload..."
}
The plugin requires that Kong's private key be accessible in order to sign the JWT. We also include the x509 cert in the x5c
JWT Header for use by API providers to validate the JWT.
JWT Issuer allows for the iss
field to be set within the JWT
token.
More information about JWT claims can be found here
Optional Plugin schema configurations:
private_key_location = "/path/to/kong/ssl/privatekey.key"
public_key_location = "/path/to/kong/ssl/kongpublickey.cer"
issuer = "issuer"
key_id = "keyId"
header = "JWT" //If you want to set the header key to something other than JWT
include_credential_type = false //Controls "Bearer " + JWT or just JWT in header
The first contains the path to your .key file, the second specifies the path to your public key in DER format .cer file.
To maintain backwards compatibility, support for passing the key locations through environment variables is also available. We access these via Kong's overriding environment variables KONG_SSL_CERT_KEY
for the private key as well as KONG_SSL_CERT_DER
for the public key.
If not already set, these can be done so as follows:
$ export KONG_SSL_CERT_KEY="/path/to/kong/ssl/privatekey.key"
$ export KONG_SSL_CERT_DER="/path/to/kong/ssl/kongpublickey.cer"
One last step is to make the environment variables accessible by an nginx worker. To do this, simply add these line to your nginx.conf
env KONG_SSL_CERT_KEY;
env KONG_SSL_CERT_DER;
Feel free to open issues, or refer to our Contribution Guidelines if you have any questions.