Session timeout overview
Conduktor uses long and short-lived tokens to verify authenticated users. By default, the maximum session lifetime is three days. This means that you can close Console and return within the three day window to continue your session without needing to re-authenticate. You can also configure the maximum idle session time before a user becomes unauthenticated. The idle timeout represents the duration of the short-lived access token. This token will be refreshed periodically until either:- the maximum session lifetime is reached or
- you close Conduktor for a period that extends the idle timeout value.
Configuration
Use the environment variables or configuration properties to configure your session lifetime requirements.CDK_AUTH_SESSIONLIFETIME
: Max session lifetime in seconds. The default is 3 days.CDK_AUTH_IDLETIMEOUT
: Max idle session time in seconds (access token lifetime). If this value is not set, the same value will be taken fromCDK_AUTH_SESSIONLIFETIME
. Should be lower thanCDK_AUTH_SESSIONLIFETIME
.