Skip to content

Commit

Permalink
fix: zone redundant or not support for ASE
Browse files Browse the repository at this point in the history
  • Loading branch information
thotheod committed Nov 14, 2023
1 parent 6d37a2e commit bc2a52a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -88,7 +88,7 @@ module ase '../../../shared/bicep/app-services/ase/ase.bicep' = if (deployAseV3)
tags: tags
diagnosticWorkspaceId: logAnalyticsWsId
subnetResourceId: subnetIdForVnetInjection
zoneRedundant: true
zoneRedundant: endsWith(sku, 'AZ') ? true : false
allowNewPrivateEndpointConnections: true //we need to expose our web app through AFD Premium, and that needs to create a Private Link. Otherwise the error you get is:
// Private Link for App Service Environment Site is only allowed on ASEv3's that have allowedPrivateEndpointConnections specified to be true object is not present in the request body.
}

0 comments on commit bc2a52a

Please sign in to comment.