Skip to content

Commit

Permalink
Fix typo in documentation for JWT Auth Role (#2258)
Browse files Browse the repository at this point in the history
  • Loading branch information
vinay-gopalan authored Jun 6, 2024
1 parent 877124b commit ae737ed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion vault/resource_jwt_auth_backend_role.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func jwtAuthBackendRoleResource() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Default: 0,
Description: "The amount of leeway to add to expiration (exp) claims to account for clock skew, in seconds. Defaults to 60 seconds if set to 0 and can be disabled if set to -1. Only applicable with 'jwt' roles.",
Description: "The amount of leeway to add to expiration (exp) claims to account for clock skew, in seconds. Defaults to 150 seconds if set to 0 and can be disabled if set to -1. Only applicable with 'jwt' roles.",
},
"not_before_leeway": {
Type: schema.TypeInt,
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/jwt_auth_backend_role.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,11 +113,11 @@ The following arguments are supported:
Only applicable with "jwt" roles.

* `expiration_leeway` - (Optional) The amount of leeway to add to expiration (`exp`) claims to account for
clock skew, in seconds. Defaults to `60` seconds if set to `0` and can be disabled if set to `-1`.
clock skew, in seconds. Defaults to `150` seconds if set to `0` and can be disabled if set to `-1`.
Only applicable with "jwt" roles.

* `not_before_leeway` - (Optional) The amount of leeway to add to not before (`nbf`) claims to account for
clock skew, in seconds. Defaults to `60` seconds if set to `0` and can be disabled if set to `-1`.
clock skew, in seconds. Defaults to `150` seconds if set to `0` and can be disabled if set to `-1`.
Only applicable with "jwt" roles.

* `verbose_oidc_logging` - (Optional) Log received OIDC tokens and claims when debug-level
Expand Down

0 comments on commit ae737ed

Please sign in to comment.