Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion en/docs/next/ai-workspace/authentication/asgardeo-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ Asgardeo uses `org_id` as the claim for the organization UUID, while the Platfor

Update `config.toml`:

{% raw %}
```toml
domain = "<your-domain>"
auth_mode = "oidc"
Expand All @@ -137,10 +138,11 @@ organization_claim_name = "org_id"
org_name_claim_name = "org_name"
org_handle_claim_name = "org_handle"
```
{% endraw %}

`redirect_url` must exactly match the authorized redirect URL you registered in step 2.

Never write the client secret as a literal in `config.toml` — the `{{ env }}` placeholder above reads it from an environment variable instead, so it never has to be committed to source control:
Never write the client secret as a literal in `config.toml` — the {% raw %}`{{ env }}`{% endraw %} placeholder above reads it from an environment variable instead, so it never has to be committed to source control:

```bash
export APIP_AIW_OIDC_CLIENT_SECRET=<ai-workspace-client-secret>
Expand Down