@@ -1466,6 +1466,18 @@ module containerApp 'br/public:avm/res/app/container-app:0.18.1' = {
14661466 name : 'APP_ENV'
14671467 value : 'Prod'
14681468 }
1469+ {
1470+ name : 'AZURE_AI_SEARCH_CONNECTION_NAME'
1471+ value : searchService .outputs .name
1472+ }
1473+ {
1474+ name : 'AZURE_AI_SEARCH_INDEX_NAME'
1475+ value : aiSearchIndexName
1476+ }
1477+ {
1478+ name : 'AZURE_AI_SEARCH_ENDPOINT'
1479+ value : searchService .outputs .endpoint
1480+ }
14691481 {
14701482 name : 'AZURE_COGNITIVE_SERVICES'
14711483 value : 'https://cognitiveservices.azure.com/.default'
@@ -1476,19 +1488,19 @@ module containerApp 'br/public:avm/res/app/container-app:0.18.1' = {
14761488 }
14771489 {
14781490 name : 'REASONING_MODEL_NAME'
1479- value : ''
1491+ value : 'o3 '
14801492 }
14811493 {
14821494 name : 'MCP_SERVER_ENDPOINT'
1483- value : ''
1495+ value : 'https://${ containerAppMcp . outputs . fqdn }/mcp'
14841496 }
14851497 {
14861498 name : 'MCP_SERVER_NAME'
14871499 value : 'MACAE MCP Server'
14881500 }
14891501 {
14901502 name : 'MCP_SERVER_DESCRIPTION'
1491- value : ''
1503+ value : 'MACAE MCP Server Description '
14921504 }
14931505 {
14941506 name : 'AZURE_TENANT_ID'
@@ -1500,19 +1512,7 @@ module containerApp 'br/public:avm/res/app/container-app:0.18.1' = {
15001512 }
15011513 {
15021514 name : 'SUPPORTED_MODELS'
1503- value : ''
1504- }
1505- {
1506- name : 'AZURE_AI_SEARCH_CONNECTION_NAME'
1507- value : aiSearchConnectionName
1508- }
1509- {
1510- name : 'AZURE_AI_SEARCH_INDEX_NAME'
1511- value : aiSearchIndexName
1512- }
1513- {
1514- name : 'AZURE_AI_SEARCH_ENDPOINT'
1515- value : searchService .outputs .endpoint
1515+ value : '["o3","o4-mini","gpt-4.1","gpt-4.1-mini"]'
15161516 }
15171517 {
15181518 name : 'AZURE_AI_SEARCH_API_KEY'
@@ -1530,10 +1530,6 @@ module containerApp 'br/public:avm/res/app/container-app:0.18.1' = {
15301530 name : 'AZURE_STORAGE_CONTAINER_NAME'
15311531 value : storageContainerName
15321532 }
1533- {
1534- name : 'AZURE_SEARCH_ENDPOINT'
1535- value : searchService .outputs .endpoint
1536- }
15371533 ]
15381534 }
15391535 ]
@@ -1943,3 +1939,12 @@ output AZURE_AI_AGENT_ENDPOINT string = aiFoundryAiProjectEndpoint
19431939output APP_ENV string = 'Prod'
19441940output AI_FOUNDRY_RESOURCE_ID string = !useExistingAiFoundryAiProject ? aiFoundryAiServices .outputs .resourceId : existingAiFoundryAiProjectResourceId
19451941output COSMOSDB_ACCOUNT_NAME string = cosmosDbResourceName
1942+ output AZURE_SEARCH_ENDPOINT string =searchService .outputs .endpoint
1943+ output AZURE_CLIENT_ID string = userAssignedIdentity !.outputs .clientId
1944+ output AZURE_TENANT_ID string = tenant ().tenantId
1945+ output AZURE_AI_SEARCH_CONNECTION_NAME string = searchService .outputs .name
1946+ output AZURE_COGNITIVE_SERVICES string = 'https://cognitiveservices.azure.com/.default'
1947+ output REASONING_MODEL_NAME string = 'o3'
1948+ output MCP_SERVER_NAME string = 'MACAE MCP Server'
1949+ output MCP_SERVER_DESCRIPTION string = 'MACAE MCP Server Description'
1950+ output SUPPORTED_MODELS string = '["o3","o4-mini","gpt-4.1","gpt-4.1-mini"]'
0 commit comments