Skip to content

Commit

Permalink
Merge pull request #84 from ks6088ts-labs/cosmetic-changes
Browse files Browse the repository at this point in the history
set default location for AI Services multi-service account
  • Loading branch information
ks6088ts committed Jun 8, 2024
2 parents d76dca9 + fe1b431 commit ce041bf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 4 additions & 1 deletion infra/main.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ param openAiLocation string = 'eastus2'
@description('Specifies the name of the Azure Cognitive Services resource.')
param cognitiveServicesName string = '${prefix}cognitiveServices'

@description('Specifies the location of the Azure Cognitive Services resource.')
param cognitiveServicesLocation string = 'eastus'

@description('Specifies the name of the Azure Storage Account resource.')
param storageAccountName string = '${prefix}sa'

Expand Down Expand Up @@ -51,7 +54,7 @@ module cognitiveServices './modules/cognitiveServices.bicep' = {
name: 'S0'
}
customSubDomainName: toLower(cognitiveServicesName)
location: location
location: cognitiveServicesLocation
tags: tags
}
}
Expand Down
2 changes: 0 additions & 2 deletions infra/main.parameters.bicepparam
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@ param openAiDeployments = [
}
]

param openAiLocation = 'eastus2'

param tags = {
environment: 'dev'
}

0 comments on commit ce041bf

Please sign in to comment.