Templat Azure Quickstart saat ini tersedia dalam bahasa Inggris
This template creates Azure Data Factory with Git configuration and managed virtual network.
Templat Azure Resource Manager ini dibuat oleh anggota komunitas dan bukan oleh Microsoft. Setiap templat Resource Manager dilisensikan kepada Anda berdasarkan perjanjian lisensi oleh pemiliknya, bukan Microsoft. Microsoft tidak bertanggung jawab atas templat Resource Manager yang disediakan dan dilisensikan oleh anggota komunitas dan tidak menyaring keamanan, kompatibilitas, atau performa. Templat Community Resource Manager tidak didukung di bawah program atau layanan dukungan Microsoft apa pun, dan tersedia SEBAGAIMANA ADANYA tanpa jaminan apa pun.
Parameter
Nama Parameter | Deskripsi |
---|---|
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. |
Menggunakan templat
Windows 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 deploymentMenginstal dan mengonfigurasi Azure PowerShell
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
Baris perintah
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 deploymentMenginstal dan Mengonfigurasi Azure Cross-Platform Command-Line Interface
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