Update
Update JWT Auth configuration on identity
Authorizations
An access token in Infisical
Path Parameters
The ID of the identity to update the auth method for.
Body
The configuration for validating JWTs. Must be one of: 'jwks', 'static'
jwks
The URL of the JWKS endpoint. Required if configurationType is 'jwks'. This endpoint must serve JSON Web Key Sets (JWKS) containing the public keys used to verify JWT signatures.
The PEM-encoded CA certificate for validating the TLS connection to the JWKS endpoint.
A list of PEM-encoded public keys used to verify JWT signatures. Required if configurationType is 'static'. Each key must be in RSA or ECDSA format and properly PEM-encoded with BEGIN/END markers.
The new unique identifier of the JWT provider.
The new list of intended recipients.
The new attributes that should be present in the JWT for it to be valid.
The new expected principal that is the subject of the JWT.
The new IPs or CIDR ranges that access tokens can be used from.
The new lifetime for an access token in seconds.
1 < x < 315360000
The new maximum lifetime for an access token in seconds.
x < 315360000
The new maximum number of times that an access token can be used.
x > 0