@@ -48,7 +48,7 @@ param tags resourceInput<'Microsoft.Resources/resourceGroups@2025-04-01'>.tags =
4848param enableTelemetry bool = true
4949
5050@description ('Optional. Enable private networking for applicable resources, aligned with the WAF recommendations. Defaults to false.' )
51- param enablePrivateNetworking bool = true
51+ param enablePrivateNetworking bool = false
5252
5353@description ('Optional: Existing Log Analytics Workspace Resource ID' )
5454param existingLogAnalyticsWorkspaceId string = ''
@@ -326,7 +326,7 @@ module avmContainerRegistry './modules/container-registry.bicep' = {
326326
327327// ========== Cosmos Database for Mongo DB ========== //
328328module avmCosmosDB 'br/public:avm/res/document-db/database-account:0.15.0' = {
329- name : ' cosmos-${solutionSuffix }'
329+ name : take ( 'avm.res. cosmos-${solutionSuffix }', 64 )
330330 params : {
331331 name : 'cosmos-${solutionSuffix }'
332332 location : solutionLocation
@@ -382,7 +382,7 @@ module avmAppConfig 'br/public:avm/res/app-configuration/configuration-store:0.6
382382 name : take ('avm.res.app-configuration.configuration-store.${appConfigName }' , 64 )
383383 params : {
384384 name : appConfigName
385- location : location
385+ location : solutionLocation
386386 managedIdentities : { systemAssigned : true }
387387 sku : 'Standard'
388388 enableTelemetry : enableTelemetry
@@ -672,6 +672,7 @@ module managedCluster 'br/public:avm/res/container-service/managed-cluster:0.10.
672672 dnsPrefix : 'aks-${solutionSuffix }'
673673 enableRBAC : true
674674 disableLocalAccounts : false
675+ publicNetworkAccess : 'Enabled'
675676 managedIdentities : {
676677 systemAssigned : true
677678 // userAssignedResourceIds: [
0 commit comments