Service Settings¶
Service settings control runtime behaviour for JIM: instance identity, single sign-on, synchronisation options, maintenance mode, and history retention. Each setting has a key (in dot notation), a typed value, and a default.
Default vs override¶
Every setting has a built-in default. If you set a value through the admin UI or API, that value takes effect; otherwise the default applies. Two flags help you reason about state at a glance:
- Effective value
The value currently in force (override if set, otherwise default). - Is overridden
Whether anyone has set an explicit value for this setting.
Read-only settings¶
Some settings are mirrored from environment variables; typically the bootstrap settings such as the database connection and initial encryption configuration. These are returned by the admin surfaces for visibility but cannot be changed at runtime; updating them is rejected. Change the underlying environment variable and restart JIM instead.
By design, JIM keeps the set of environment-variable-driven settings small and prefers service settings, so this read-only category is intentionally narrow.
Categories¶
Settings are grouped by concern:
- Instance
Service identity (name, ID) for distinguishing JIM deployments. - SSO
Single sign-on and authentication settings. - Synchronisation
Sync pipeline and change tracking settings. - Maintenance
Maintenance mode and system health settings. - History
Audit history retention and cleanup settings. - Security
Credential encryption and API rate limiting settings.
The category is mostly a UI grouping; it does not change semantics.
Reverting¶
Removing the override (resetting the value back to null so the effective value reverts to the default) is a separate operation from updating. It conveys intent (return to default) more clearly than an update with a null body would, and is also useful for backing out a configuration change without needing to remember the original default.
Confirming a change¶
Nearly every Service Setting is operational and saves in silence. The few that steer synchronisation are confirmed first, listing what is changing and reminding you that a Full Synchronisation is what puts it into effect. See Configuration changes.
Change history¶
Every update and revert records a versioned entry in the setting's configuration change history: who changed it, when, the value before and after, and whether the setting is overridden or back on its default. Open a setting's history from the history button on its row in the Service Settings area, or retrieve it with Get-JIMConfigurationChangeHistory -Type ServiceSetting -Id '<setting key>' or the REST API.
When you save or revert a setting in the admin portal, an optional "Reason for change" prompt lets you record why (a change ticket number, for example); automation can pass the same reason via -ChangeReason or the REST request. Encrypted setting values are never stored in the history: a changed secret is shown as changed, never by value.
Value types¶
Settings are typed: string, boolean, integer, or timespan. The type is enforced on update.
Common workflows¶
Looking up a setting:
- Browse the settings list to find the key, the current effective value, and whether it's overridden
- Drill into the specific setting if you want to see its description, default, and category
Changing a setting:
- Update the setting with the new value
- The change takes effect immediately for new operations; in-flight operations finish under the previous value
Reverting to default:
- Revert the setting; the override clears, and the effective value returns to the default
Manage Service Settings¶
- JIM portal
Service Settings area of the admin UI - PowerShell
Service Settings cmdlets (Get-JIMServiceSetting,Set-JIMServiceSetting, etc.) - REST API
Service Settings endpoints in the interactive API reference
See also¶
- Administration: Configuration Reference -- detailed reference for the settings that exist and what each one does