diff options
| author | James Elliott <james-d-elliott@users.noreply.github.com> | 2024-03-14 21:20:32 +1100 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-03-14 21:20:32 +1100 | 
| commit | caf9c61342fdd8c3b2943375e516aa3ab62194a1 (patch) | |
| tree | 99974555559f27029ca53a1a5375a164b214f6b0 /config.template.yml | |
| parent | 09b3bb58e36819ec2a4f5d66b05154e43dbb0154 (diff) | |
refactor: config naming (#6852)
Signed-off-by: James Elliott <james-d-elliott@users.noreply.github.com>
Diffstat (limited to 'config.template.yml')
| -rw-r--r-- | config.template.yml | 12 | 
1 files changed, 6 insertions, 6 deletions
diff --git a/config.template.yml b/config.template.yml index 0ab606458..f587c0fcb 100644 --- a/config.template.yml +++ b/config.template.yml @@ -268,7 +268,7 @@ identity_validation:    ## Reset Password flow. Adjusts how the reset password flow operates.    reset_password:      ## Maximum allowed time before the JWT is generated and when the user uses it in the duration common syntax. -    # expiration: '5 minutes' +    # token_lifespan: '5 minutes'      ## The algorithm used for the Reset Password JWT.      # jwt_algorithm: 'HS256' @@ -279,12 +279,12 @@ identity_validation:    ## Elevated Session flows. Adjusts the flow which require elevated sessions for example managing credentials, adding,    ## removing, etc.    # elevated_session: -    ## Maximum allowed time after the One-Time Code is generated that it is considered valid. -    # expiration: '5 minutes' +    ## Maximum allowed lifetime after the One-Time Code is generated that it is considered valid. +    # code_lifespan: '5 minutes' -    ## Maximum allowed time after the user uses the One-Time Code and the user must perform the validation again in the -    ## duration common syntax. -    # elevation_expiration: '10 minutes' +    ## Maximum allowed lifetime after the user uses the One-Time Code and the user must perform the validation again in +    ## the duration common syntax. +    # elevation_lifespan: '10 minutes'      ## Number of characters the one-time password contains.      # characters: 8  | 
