mirror of https://github.com/status-im/consul.git
38 lines
880 B
Plaintext
38 lines
880 B
Plaintext
{
|
|
"name": "envoy.filters.http.jwt_authn",
|
|
"typedConfig": {
|
|
"@type": "type.googleapis.com/envoy.extensions.filters.http.jwt_authn.v3.JwtAuthentication",
|
|
"providers": {
|
|
"okta": {
|
|
"issuer": "test-issuer",
|
|
"payloadInMetadata": "jwt_payload_okta",
|
|
"remoteJwks": {
|
|
"httpUri": {
|
|
"uri": "https://example-okta.com/.well-known/jwks.json",
|
|
"cluster": "jwks_cluster_okta",
|
|
"timeout": "1s"
|
|
},
|
|
"asyncFetch": {
|
|
"fastListener": true
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"rules": [
|
|
{
|
|
"match": {
|
|
"prefix": "/"
|
|
},
|
|
"requires": {
|
|
"requiresAny": {
|
|
"requirements": [
|
|
{"providerName": "okta"},
|
|
{"allowMissingOrFailed": {}}
|
|
]
|
|
}
|
|
|
|
}
|
|
}
|
|
]
|
|
}
|
|
} |