Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions arm/Microsoft.DataFactory/factories/deploy.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -149,15 +149,15 @@ resource dataFactory 'Microsoft.DataFactory/factories@2018-06-01' = {
}

module dataFactory_managedVirtualNetwork 'managedVirtualNetwork/deploy.bicep' = if (!empty(managedVirtualNetworkName)) {
name: '${uniqueString(deployment().name, location)}-ManagedVirtualNetwork'
name: '${uniqueString(deployment().name, location)}-DataFactory-ManagedVNet'
params: {
name: managedVirtualNetworkName
dataFactoryName: dataFactory.name
}
}

module dataFactory_integrationRuntime 'integrationRuntime/deploy.bicep' = if (!empty(integrationRuntime)) {
name: '${uniqueString(deployment().name, location)}-IntegrationRuntime'
name: '${uniqueString(deployment().name, location)}-DataFactory-IntegrationRuntime'
params: {
dataFactoryName: dataFactory.name
name: integrationRuntime.name
Expand Down Expand Up @@ -193,7 +193,7 @@ resource dataFactory_diagnosticSettings 'Microsoft.Insights/diagnosticsettings@2
}

module dataFactory_rbac '.bicep/nested_rbac.bicep' = [for (roleAssignment, index) in roleAssignments: {
name: '${deployment().name}-rbac-${index}'
name: '${uniqueString(deployment().name, location)}-DataFactory-Rbac-${index}'
params: {
principalIds: roleAssignment.principalIds
roleDefinitionIdOrName: roleAssignment.roleDefinitionIdOrName
Expand Down