Create a data management gateway and install on an Azure VM
Last updated: 30/03/2017
This template deploys a virtual machine and creates a workable data management gateway
This Azure Resource Manager (ARM) template was created by a member of the community and not by Microsoft. Each ARM template is licensed to you under a licence agreement by its owner, not Microsoft. Microsoft is not responsible for ARM templates provided and licensed by community members and does not screen for security, compatibility or performance. Community ARM templates are not supported under any Microsoft support programme or service, and are made available AS IS without warranty of any kind.
Parameters
Parameter Name | Description |
---|---|
existingDataFactoryName | your existing data factory name |
GatewayName | Gateway name must be unique in subscription |
adminUsername | User name for the virtual machine |
adminPassword | Password for the virtual machine |
existingVirtualNetworkName | your existing vnet name |
existingVnetLocation | your virtual machine will be create in the same datacenter with VNET |
existingVnetResourceGroupName | Name of the existing VNET resource group |
existingSubnetInYourVnet | Name of the subnet in the virtual network you want to use |
enableToSetDataStorePasswordsFromInternet | If you choose yes, we will create a dns name label for your machine and open one inbound port for our service to access your machine and set data store passwords. |
_artifactsLocation | The base URI where artifacts required by this template are located. |
_artifactsLocationSasToken | The sasToken required to access _artifactsLocation. When the template is deployed using the accompanying scripts, a sasToken will be automatically generated. |
Use the template
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 deploymentInstalling and configuring Azure PowerShell
New-AzResourceGroupDeployment -ResourceGroupName <resource-group-name> -TemplateUri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vm-with-data-management-gateway/azuredeploy.json
Command line
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 deploymentInstalling and configuring the 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/101-vm-with-data-management-gateway/azuredeploy.json