-
Notifications
You must be signed in to change notification settings - Fork 77
Feature/keycloak vscode redirects #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
19f9b5b
2dec6db
0a15c7c
8e2df33
a9d7f39
61da730
a8d381f
a2c22df
1e8d55c
202dabb
0530e90
818477f
e5c4ac3
4a5148d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,8 @@ | |
| "0.0.0.0:5678", | ||
| "servers/basic_mcp_stdio.py" | ||
| ] | ||
| }, | ||
| } | ||
|
|
||
| }, | ||
| "inputs": [] | ||
| } | ||
| } | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -782,8 +782,7 @@ module server 'server.bicep' = { | |||||
| openTelemetryPlatform: openTelemetryPlatform | ||||||
| exists: serverExists | ||||||
| // Keycloak authentication configuration (only when enabled) | ||||||
| keycloakRealmUrl: useKeycloak ? '${keycloak!.outputs.uri}/realms/${keycloakRealmName}' : '' | ||||||
| keycloakTokenIssuer: useKeycloak ? '${keycloakMcpServerBaseUrl}/realms/${keycloakRealmName}' : '' | ||||||
| keycloakRealmUrl: useKeycloak ? '${keycloak!.outputs.uri}/auth/realms/${keycloakRealmName}' : '' | ||||||
madebygps marked this conversation as resolved.
Show resolved
Hide resolved
|
||||||
| keycloakMcpServerBaseUrl: useKeycloak ? keycloakMcpServerBaseUrl : '' | ||||||
| keycloakMcpServerAudience: keycloakMcpServerAudience | ||||||
| // Azure/Entra ID OAuth Proxy authentication configuration (only when enabled) | ||||||
|
|
@@ -810,7 +809,7 @@ module agent 'agent.bicep' = { | |||||
| openAiDeploymentName: openAiDeploymentName | ||||||
| openAiEndpoint: openAi.outputs.endpoint | ||||||
| mcpServerUrl: useKeycloak ? 'https://mcproutes.${containerApps.outputs.defaultDomain}/mcp' : '${server.outputs.uri}/mcp' | ||||||
| keycloakRealmUrl: useKeycloak ? '${keycloak.outputs.uri}/realms/${keycloakRealmName}' : '' | ||||||
| keycloakRealmUrl: useKeycloak ? '${keycloak.outputs.uri}/auth/realms/${keycloakRealmName}' : '' | ||||||
| exists: agentExists | ||||||
| } | ||||||
| } | ||||||
|
|
@@ -946,9 +945,10 @@ output KEYCLOAK_MCP_SERVER_BASE_URL string = useKeycloak ? keycloakMcpServerBase | |||||
|
|
||||||
| // Keycloak and MCP Server routing outputs (only populated when mcpAuthProvider is keycloak) | ||||||
| output KEYCLOAK_REALM_URL string = useKeycloak ? '${httpRoutes!.outputs.routeConfigUrl}/auth/realms/${keycloakRealmName}' : '' | ||||||
| output KEYCLOAK_ADMIN_CONSOLE string = useKeycloak ? '${httpRoutes!.outputs.routeConfigUrl}/auth/admin' : '' | ||||||
| output KEYCLOAK_ADMIN_CONSOLE string = useKeycloak ? '${httpRoutes!.outputs.routeConfigUrl}/auth/admin/master/console' : '' | ||||||
| output KEYCLOAK_DIRECT_URL string = keycloak.outputs.uri | ||||||
|
||||||
| output KEYCLOAK_DIRECT_URL string = keycloak.outputs.uri | |
| output KEYCLOAK_DIRECT_URL string = useKeycloak ? keycloak.outputs.uri : '' |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There is trailing whitespace on this line after the closing brace. Consider removing it to maintain consistent formatting.