Generic OIDC SSO and Access Setup: IT Admin Guide
Bolt Enterprise · single sign-on, group provisioning and desktop rollout. Setup time is about 15 minutes.
SPARCLE
Bolt Enterprise
rev. 2026-09-14
Bolt Enterprise
rev. 2026-09-14
1 · Create the application in your provider's admin console
- your provider's admin console → create a confidential client with the authorization code grant.
- Name it
Bolt. Grant types: Authorization Code plus Refresh Token. - Sign-in redirect URI:
https://bolt.<yourdomain>/api/auth/callback - Sign-out redirect URI:
https://bolt.<yourdomain>/ - Scopes:
openidemailprofileoffline_access. Bolt requests nothing else from your provider.
- your provider's own assignment model: Bolt gates on whatever your provider returns. If it refuses to issue a token, the user cannot sign in.
- Copy the values Bolt needs: Client ID, Client secret, and discovery url
https://idp.acme.com/oauth2/default.
That is the whole IdP side. Bolt never calls back into your provider with an admin token, and nothing is written into your directory. Issuer resolved by Bolt:
whatever you set as DISCOVERY_URL.2 · Give the credentials to Bolt
Nothing here is needed to try Bolt. For a pilot, people install the desktop app from sparcle.app/download and use it. This page is for when you want a shared deployment with single sign-on behind it, and the enterprise bundle referenced below is sent by Sparcle at that point.
A · Setup wizard (no file editing)
The installer and first-run admin wizard walk this step: pick Generic OIDC, paste the values above, click through. SAML uses the same wizard. Self-hosted installs can instead run enterprise/setup.sh, which writes a .env.prod for you.
B · Configuration file (self-hosted)
APP__PLATFORM__IDENTITY__PROVIDER=generic-oidc APP__PLATFORM__IDENTITY__DISCOVERY_URL=https://idp.acme.com/oauth2/default APP__PLATFORM__IDENTITY__CLIENT_ID=<client-id> APP__PLATFORM__IDENTITY__CLIENT_SECRET=<client-secret> APP__PLATFORM__IDENTITY__REDIRECT_URI=\ https://bolt.example.com/api/auth/callback
DISCOVERY_URL carries the issuer. Give the issuer base URL, not the discovery document URL: Bolt appends /.well-known/openid-configuration itself. Works with Ping, Keycloak, JumpCloud and OneLogin.
C · SAML 2.0 (if you standardise on SAML)
| Generic OIDC field | Value |
|---|---|
| Single sign-on URL (ACS) | https://bolt.<domain>/api/auth/saml/callback |
| SP metadata | https://bolt.<domain>/api/auth/saml/metadata |
| Audience / Entity ID | as published in the SP metadata above |
| Attribute statement | email (required) |
D · Verify
curl https://bolt.example.com/health → {"status":"healthy", ...}
status is healthy, degraded or critical. Then sign in at https://bolt.<domain> with a corporate account. A failed login names its cause: redirect-URI mismatch, unassigned user, or clock skew.
3 · Granting access: four separate levers
| Lever | Where you set it | What it controls |
|---|---|---|
| Who can sign in | your provider → Bolt app → your provider's own assignment model | The primary gate. Remove the assignment to revoke. |
| Who is a Bolt admin | Bolt Admin → access allowlist (allowed_users, allowed_groups) | The admin console, audit log, policy and connector settings. Changes apply live, no restart. |
| Joiner, mover, leaver | your provider → Bolt app → Provisioning (SCIM 2.0) Base URL https://bolt.<domain>/scim/v2 | Push Users and Push Groups. Deactivating in your provider deactivates in Bolt. |
| What data Bolt can read | Workspace and connector consent (section 4) | Which sources are reachable per user: Mail, Calendar, Drive, Confluence and so on. |
SCIM token: issue it in Bolt (Admin → SCIM → New token). It is displayed once only, so paste it straight into the provisioning screen as the bearer token. Groups: Group membership does not travel in the ID token. Bolt has no directory reader for your provider, so if you intend to scope anything by group, turn on SCIM provisioning and enable Push Groups. That is the only path that populates groups for your provider.
4 · What Bolt is able to read
- Read-only, always. Where Bolt reads mail, calendar or files it asks for
gmail.readonly,calendar.readonly,drive.readonly,tasks.readonlyandcontacts.readonly. There is no write scope to grant. - One surface at a time. Signing in asks only for
openid,emailandprofile. Each surface asks for its own permission when first opened, so a person can be signed in and reach nothing. - Each source's own permissions are enforced at retrieval, for any caller, including an MCP gateway. Confluence page restrictions that override space permissions, Drive sharing, and the equivalent elsewhere.
your provider signs people in. It does not carry their mail, calendar or files. Those live in Google Workspace or Microsoft 365, and connecting them is a separate step configured per deployment rather than something your provider grants. Tell us which one you run and we will confirm the wiring for your tenant before you plan around it.
5 · Rolling the desktop app onto laptops (pick one)
| Method | Configuration | Notes |
|---|---|---|
| MDM (macOS) Jamf, Mosyle, Kandji | Payload com.sparcle.bolt: EnterpriseApiUrl = https://bolt.<domain>, ForceManagedMode = true | Recommended. Users never type a URL. Push your internal CA here too, if Bolt uses one. |
| Group Policy (Windows) | HKLM\Software\Sparcle\Bolt, with EnterpriseApiUrl and ForceManagedMode = 1 | Same effect as MDM. |
| DNS SRV | _bolt._tcp.<domain>. SRV 10 5 443 bolt.<domain>. | No MDM required. |
| First-launch wizard | User pastes the endpoint once | Fine for a pilot. |