@@ -104,7 +104,6 @@ param embedDeploymentSku string = 'Standard'
104
104
// https://learn.microsoft.com/azure/ai-services/openai/quotas-limits
105
105
param embedDeploymentCapacity int = 30
106
106
107
- param useContainerRegistry bool = true
108
107
param useApplicationInsights bool = true
109
108
@description ('Do we want to use the Azure AI Search' )
110
109
param useSearchService bool = false
@@ -251,7 +250,6 @@ module containerApps 'core/host/container-apps.bicep' = {
251
250
name : 'app'
252
251
location : location
253
252
tags : tags
254
- containerRegistryName : '${abbrs .containerRegistryRegistries }${resourceToken }'
255
253
containerAppsEnvironmentName : 'containerapps-env-${resourceToken }'
256
254
logAnalyticsWorkspaceName : empty (aiExistingProjectConnectionString )
257
255
? ai .outputs .logAnalyticsWorkspaceName
@@ -267,11 +265,8 @@ module api 'api.bicep' = {
267
265
name : 'ca-api-${resourceToken }'
268
266
location : location
269
267
tags : tags
270
- serviceName : 'api_and_frontend'
271
- // serviceName: 'get-started-with-ai-agents'
272
268
identityName : '${abbrs .managedIdentityUserAssignedIdentities }api-${resourceToken }'
273
269
containerAppsEnvironmentName : containerApps .outputs .environmentName
274
- //containerRegistryName: containerApps.outputs.registryName
275
270
projectConnectionString : projectConnectionString
276
271
agentDeploymentName : agentDeploymentName
277
272
searchConnectionName : searchConnectionName
@@ -409,8 +404,6 @@ output AZURE_AI_AGENT_ID string = agentID
409
404
410
405
// Outputs required by azd for ACA
411
406
output AZURE_CONTAINER_ENVIRONMENT_NAME string = containerApps .outputs .environmentName
412
- output AZURE_CONTAINER_REGISTRY_NAME string = containerApps .outputs .registryName
413
- output AZURE_CONTAINER_REGISTRY_ENDPOINT string = containerApps .outputs .registryLoginServer
414
407
output SERVICE_API_IDENTITY_PRINCIPAL_ID string = api .outputs .SERVICE_API_IDENTITY_PRINCIPAL_ID
415
408
output SERVICE_API_NAME string = api .outputs .SERVICE_API_NAME
416
409
output SERVICE_API_URI string = api .outputs .SERVICE_API_URI
0 commit comments