Terraform component stands up a self-hosted Azure Data Factory integration runtime on an Azure VM
Simply run terraform plan and apply
terraform init
terraform plan && terraform apply -auto-approve
terraform destroy -auto-approve
az deployment group create \
--resource-group self-hosted-adf-ir-poc \
--name rollout01 \
--template-uri https://raw.githubusercontent.com/Azure/azure-quickstart-templates/master/101-vms-with-selfhost-integration-runtime/azuredeploy.json \
--parameters @azuredeploy.parameters.json
Note: this approach requires prerequisite resources. Inspect azuredeploy.parameters.json
for more detail.