File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,8 +115,7 @@ jobs:
115115 --template-file infra/main.bicep \
116116 --parameters solutionName=${{env.SOLUTION_PREFIX}} \
117117 --parameters location=${{ env.AZURE_LOCATION }} \
118- --parameters aiDeploymentLocation=${{ env.AZURE_LOCATION }} \
119- --parameters azureAiServiceLocation=${{ env.AZURE_LOCATION }}
118+ --parameters aiDeploymentLocation=${{ env.AZURE_LOCATION }}
120119
121120
122121 - name : Extract AI Services and Key Vault Names
Original file line number Diff line number Diff line change @@ -36,14 +36,9 @@ var solutionLocation = empty(location) ? resourceGroup().location : location
3636 ]
3737 }
3838})
39- @description ('Required. Location for AI Foundry deployment. This is the location where the AI Foundry resources will be deployed.' )
40- param azureAiServiceLocation string
4139@description ('Optional. Location for all AI service resources. This location can be different from the resource group location.' )
4240param aiDeploymentLocation string
4341
44- @description ('Optional. Azure AI Service location for the AI Foundry module.' )
45- param azureAiServiceLocation string = aiDeploymentLocation
46-
4742@description ('Optional. The host (excluding https://) of an existing container registry. This is the `loginServer` when using Azure Container Registry.' )
4843param containerRegistryHost string = 'containermigrationacr.azurecr.io'
4944
@@ -728,7 +723,7 @@ module aiFoundry 'br/public:avm/ptn/ai-ml/ai-foundry:0.4.0' = if(!useExistingAiF
728723 #disable-next-line BCP334
729724 baseName : take (aiFoundryAiServicesResourceName , 12 )
730725 baseUniqueName : null
731- location : empty (azureAiServiceLocation ) ? location : azureAiServiceLocation
726+ location : empty (aiDeploymentLocation ) ? location : aiDeploymentLocation
732727 aiFoundryConfiguration : {
733728 accountName :aiFoundryAiServicesResourceName
734729 allowProjectManagement : true
You can’t perform that action at this time.
0 commit comments