Skip to content

Commit ddb321f

Browse files
committed
fix: missing BURGER_MCP_ENDPOINT
1 parent 140c0ed commit ddb321f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

infra/main.bicep

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ var storageAccountName = '${abbrs.storageStorageAccounts}${resourceToken}'
9292
var openAiUrl = 'https://${openAi.outputs.name}.openai.azure.com'
9393
var storageUrl = 'https://${storage.outputs.name}.blob.${environment().suffixes.storage}'
9494
var burgerApiUrl = 'https://${burgerApiFunction.outputs.defaultHostname}'
95-
var burgerMcpUrl = burgerMcpContainerApp.outputs.uri
95+
var burgerMcpUrl = '${burgerMcpContainerApp.outputs.uri}/mcp'
9696
var burgerWebappUrl = 'https://${burgerWebapp.outputs.defaultHostname}'
9797
var agentApiUrl = 'https://${agentApiFunction.outputs.defaultHostname}'
9898
var agentWebappUrl = 'https://${agentWebapp.outputs.defaultHostname}'
@@ -279,6 +279,7 @@ module agentApiFunctionSettings './core/site-app-settings.bicep' = {
279279
AZURE_OPENAI_CHAT_DEPLOYMENT_NAME: chatModelName
280280
AZURE_OPENAI_INSTANCE_NAME: openAi.outputs.name
281281
AZURE_OPENAI_API_VERSION: openAiApiVersion
282+
BURGER_MCP_ENDPOINT: burgerMcpUrl
282283
}
283284
storageAccountResourceId: storage.outputs.resourceId
284285
storageAccountUseIdentityAuthentication: true

0 commit comments

Comments
 (0)