This topic tells you how to configure the session expiry settings for Application Single Sign-On (commonly called AppSSO).
AppSSO allows you to optionally configure the session expiry settings in your AuthServer
resource.
The default expiry time for an AppSSO session is 15 minutes, according to the STIG guidelines.
To override the session expiry settings, configure the following in your AuthServer
resource:
kind: AuthServer
# ...
spec:
session:
expiry: "30m"
expiry
field examples:
Type | Example | Definition |
---|---|---|
Minutes | 10m |
10 minutes |
Hours | 5h |
5 hours |
NoteThe
expiry
field adheres to the duration constraints of the Go standard time library and does not support durations in units beyond hours, such as days or weeks. For more information, see the Go documentation.
The session expiry constraints are as follows:
expiry
field cannot be negative or zero.