File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -132,6 +132,9 @@ param deployments deploymentType[]?
132132@description ('Optional. Key vault reference and secret settings for the module\' s secrets export.' )
133133param secretsExportConfiguration secretsExportConfigurationType ?
134134
135+ @description ('Optional. Enable/Disable project management feature for AI Foundry.' )
136+ param allowProjectManagement bool ?
137+
135138var enableReferencedModulesTelemetry = false
136139
137140var formattedUserAssignedIdentities = reduce (
@@ -323,7 +326,7 @@ resource cognitiveService 'Microsoft.CognitiveServices/accounts@2025-04-01-previ
323326 name : sku
324327 }
325328 properties : {
326- allowProjectManagement : true // allows project management for Cognitive Services accounts in AI Foundry - FDP updates
329+ allowProjectManagement : allowProjectManagement
327330 customSubDomainName : customSubDomainName
328331 networkAcls : !empty (networkAcls ?? {})
329332 ? {
Original file line number Diff line number Diff line change @@ -91,6 +91,7 @@ module cognitiveService '../avm/cognitive-services/main.bicep' = {
9191 tags : tags
9292 sku : sku
9393 kind : kind
94+ allowProjectManagement : true
9495 managedIdentities : {
9596 systemAssigned : true
9697 }
You can’t perform that action at this time.
0 commit comments