Las plantillas de Inicio rápido de Azure están disponibles actualmente en inglés.
This template creates Azure Data Factory with Git configuration and managed virtual network.
Esta plantilla de Azure Resource Manager (ARM) la creó un miembro de la comunidad, no Microsoft. Su propietario (no Microsoft) le permite usar las plantillas de ARM con arreglo a un contrato de licencia. Microsoft no se responsabiliza de ninguna plantilla de ARM que le proporcionen los miembros de la comunidad (o cuya licencia le otorguen) en cuanto a su seguridad, compatibilidad ni rendimiento. Las plantillas de ARM de la comunidad no reciben ningún tipo de soporte en ningún servicio ni programa de soporte de Microsoft. Dichas plantillas se proporcionan TAL CUAL, sin garantía de ningún tipo.
Parámetros
Nombre del parámetro | Descripción |
---|---|
dataFactoryName | Data factory name |
enableManagedVirtualNetwork | Managed Virtual Network name |
enableManagedVnetIntegrationRuntime | Enable the integration runtime inside the managed virtual network. Only required if enableManagedVirtualNetwork is true |
location | Data factory location |
tags | Object containing resource tags |
publicNetworkAccess | Enable or disable public network access |
configureGit | Configure git during deployment |
gitRepoType | Git repository type. Azure DevOps = FactoryVSTSConfiguration and GitHub = FactoryGitHubConfiguration |
gitAccountName | Git account name. Azure DevOps = Organisation name and GitHub = Username |
gitProjectName | Git project name. Only relevant for Azure DevOps |
gitRepositoryName | Git repository name |
gitCollaborationBranch | The collaboration branch name. Default is main |
gitRootFolder | The root folder path name. Default is / |
systemAssignedIdentity | Enables system assigned managed identity on the resource |
userAssignedIdentities | The user assigned ID(s) to assign to the resource |
enableDiagnostics | Enable diagnostic logs |
diagnosticStorageAccountId | Storage account resource id. Only required if enableDiagnostics is set to true |
diagnosticLogAnalyticsWorkspaceId | Log analytics workspace resource id. Only required if enableDiagnostics is set to true |
diagnosticEventHubAuthorizationRuleId | Event hub authorization rule for the Event Hub namespace. Only required if enableDiagnostics is set to true |
diagnosticEventHubName | Event hub name. Only required if enableDiagnostics is set to true |
resourcelock | Specify the type of resource lock. |
Uso de la plantilla
PowerShell
New-AzResourceGroup -Name <resource-group-name> -Location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalar y configurar PowerShell de Azure
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.datafactory/data-factory-v2-git-config-managed-vnet/azuredeploy.json
Línea de comandos
az group create --name <resource-group-name> --location <resource-group-location> #use this command when you need to create a new resource group for your deploymentInstalación y configuración de la interfaz de línea de comandos multiplataforma de Azure
az group deployment create --resource-group <my-resource-group> --template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/quickstarts/microsoft.datafactory/data-factory-v2-git-config-managed-vnet/azuredeploy.json