Skip to content

Commit 2866afb

Browse files
authored
Merge branch 'main' into testauthinit
2 parents 02c1b19 + e479312 commit 2866afb

File tree

5 files changed

+9
-6
lines changed

5 files changed

+9
-6
lines changed

app/backend/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ microsoft-kiota-serialization-multipart==1.9.3
190190
# via msgraph-sdk
191191
microsoft-kiota-serialization-text==1.9.3
192192
# via msgraph-sdk
193-
msal==1.30.0
193+
msal==1.33.0
194194
# via
195195
# -r requirements.in
196196
# azure-identity

docs/azure_container_apps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ To deploy to Azure Container Apps, please follow the following steps:
4646
The default workload profile is Consumption. If you want to use a dedicated workload profile like D4, please run:
4747

4848
```bash
49-
azd env AZURE_CONTAINER_APPS_WORKLOAD_PROFILE D4
49+
azd env set AZURE_CONTAINER_APPS_WORKLOAD_PROFILE D4
5050
```
5151

5252
For a full list of workload profiles, please check [the workload profile documentation](https://learn.microsoft.com/azure/container-apps/workload-profiles-overview#profile-types).

infra/core/networking/private-endpoint.bicep

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ resource privateEndpoint 'Microsoft.Network/privateEndpoints@2021-02-01' = {
4747
properties: {
4848
privateDnsZoneConfigs: !empty(dnsZoneId) ? [
4949
{
50-
name: 'config1'
50+
name: 'config-${name}-${dnsZoneId}'
5151
properties: {
5252
privateDnsZoneId: dnsZoneId
5353
}

infra/main.bicep

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1212,8 +1212,9 @@ var cognitiveServicesPrivateEndpointConnection = (usePrivateEndpoint && (!useLoc
12121212
{
12131213
groupId: 'account'
12141214
dnsZoneName: 'privatelink.cognitiveservices.azure.com'
1215+
// Only include generic Cognitive Services-based resources (Form Recognizer / Vision / Content Understanding)
1216+
// Azure OpenAI uses its own privatelink.openai.azure.com zone and already has a separate private endpoint above.
12151217
resourceIds: concat(
1216-
[openAi.outputs.resourceId],
12171218
!useLocalPdfParser ? [documentIntelligence.outputs.resourceId] : [],
12181219
useMultimodal ? [vision.outputs.resourceId] : [],
12191220
useMediaDescriberAzureCU ? [contentUnderstanding.outputs.resourceId] : []

infra/private-endpoints.bicep

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@ var privateEndpointInfo = [
5252
resourceId: resourceId
5353
})
5454
]
55-
module privateEndpoints './core/networking/private-endpoint.bicep' = [for privateEndpointInfo in flatten(privateEndpointInfo): {
56-
name: '${privateEndpointInfo.name}-privateendpoint'
55+
56+
module privateEndpoints './core/networking/private-endpoint.bicep' = [for (privateEndpointInfo, i) in flatten(privateEndpointInfo): {
57+
name: '${privateEndpointInfo.name}-${i}-privateendpoint'
5758
params: {
5859
location: location
5960
name: '${privateEndpointInfo.name}${abbrs.privateEndpoint}${resourceToken}'
@@ -82,6 +83,7 @@ module monitorDnsZones './core/networking/private-dns-zones.bicep' = [for monito
8283
virtualNetworkName: vnetName
8384
}
8485
}]
86+
8587
// Get blob DNS zone index for monitor private link
8688
var blobEndpointInfo = filter(flatten(privateEndpointInfo), info => info.groupId == 'blob')
8789
// Assert that blob endpoints exist (required for this application)

0 commit comments

Comments
 (0)