logstash-filter-auth0jwt 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/logstash-filter-auth0jwt.gemspec +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e6e505cb4edb1caf39a4185d555723eefdc746cc
|
|
4
|
+
data.tar.gz: 9581a2fd547e592110f3ec54ab6a49cca9c94e71
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13279057105a6b4301bc6ec103cb5abeac269af81ba7b950a7c467181485fa73cbe70e5a3994a9c709cb00d19fba6785cc842768219bb9548111429da752ec16
|
|
7
|
+
data.tar.gz: f044f198efd74600474179ad354ccf90fdd244dae61a287a09ad468c0798cfff46c95d2a1dcee62a9403f64960eb7055bf828520bdae577f5aaa468286b1c974
|
data/README.md
CHANGED
|
@@ -6,7 +6,7 @@ This filter validates an Auth0 JWT token, and drops an event if validation fails
|
|
|
6
6
|
|
|
7
7
|
This filter has one required configuration parameter - 'domain'. This maps to the value shown in the Auth0 dashboard under Clients > Settings > Domain.
|
|
8
8
|
|
|
9
|
-
Also available is an optional parameter - 'purge_seconds' - for configuraing the length of time for which the cache is kept.
|
|
9
|
+
Also available is an optional parameter - 'purge_seconds' - for configuraing the length of time for which the cache is kept, and 'include_user_properties' to enable adding any user data from the Auth0 response body to each event.
|
|
10
10
|
|
|
11
11
|
# Logstash Plugin
|
|
12
12
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = 'logstash-filter-auth0jwt'
|
|
3
|
-
s.version = '0.1.
|
|
3
|
+
s.version = '0.1.4'
|
|
4
4
|
s.licenses = ['Apache License (2.0)']
|
|
5
5
|
s.summary = 'Logstash filter plugin for Auth0 JWT validation.'
|
|
6
6
|
s.description = 'Logstash filter plugin for Auth0 JWT validation.'
|