mirror of https://github.com/status-im/consul.git
docs: minor fixes to JWT auth docs (#17680)
* Fixes * service intentions fixes
This commit is contained in:
parent
66704e5cb9
commit
37a13dcf82
|
@ -109,7 +109,7 @@ Name = "<name-of-provider-configuration-entry>" # required
|
|||
Issuer = "<jwt-issuer>" # required
|
||||
JSONWebKeySet = { # required
|
||||
Local = { # cannot specify with JWKS{}.Remote
|
||||
JWKS = "<JWKS-formatted-as-string>" # cannot specify with JWKS{}.Local{}.Filename
|
||||
JWKS = "<JWKS-as-base64-string>" # cannot specify with JWKS{}.Local{}.Filename
|
||||
Filename = "<path/to/JWKS/file>" # cannot specify with JWKS{}.Local{}.String
|
||||
}
|
||||
}
|
||||
|
@ -169,7 +169,7 @@ CacheConfig = {
|
|||
"Issuer": "<jwt-issuer>", // required
|
||||
"JSONWebKeySet": { // required
|
||||
"Local": { // cannot specify with JWKS.Remote
|
||||
"JWKS": "<JWKS-formatted-as-string>", // cannot specify with JWKS.Local.Filename
|
||||
"JWKS": "<JWKS-as-base64-string>", // cannot specify with JWKS.Local.Filename
|
||||
"Filename": "<path/to/JWKS/file>" // cannot specify with JWKS.Local.String
|
||||
}
|
||||
},
|
||||
|
@ -233,7 +233,7 @@ spec: # required
|
|||
issuer: <jwt-issuer>
|
||||
jsonWebKeySet:
|
||||
local: # cannot specify with spec.jsonWebKeySet.remote
|
||||
jwks: <jwks-formatted-as-string> # cannot specify with spec.jsonWebKeySet.local.filename
|
||||
jwks: <jwks-as-base64-string> # cannot specify with spec.jsonWebKeySet.local.filename
|
||||
filename: <path/to/jwks/file> # cannot specify with spec.jsonWebKeySet.local.string
|
||||
jsonWebKeySet:
|
||||
remote: # cannot specify with spec.jsonWebKeySet.local
|
||||
|
@ -1014,7 +1014,7 @@ metadata:
|
|||
name: okta
|
||||
spec:
|
||||
issuer: okta
|
||||
jsonwebkeyset:
|
||||
jsonWebKeySet:
|
||||
remote:
|
||||
uri: https://<org>.okta.com/oauth2/default/v1/keys
|
||||
cacheDuration: 30m
|
||||
|
|
Loading…
Reference in New Issue