Azure Data Factory Integration Runtime Azure

This page shows how to write Terraform for Data Factory Integration Runtime Azure and write them securely.

azurerm_data_factory_integration_runtime_azure (Terraform)

The Integration Runtime Azure in Data Factory can be configured in Terraform with the resource name azurerm_data_factory_integration_runtime_azure. The following sections describe 2 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L62
resource "azurerm_data_factory_integration_runtime_azure" "sandyazureruntimes" {
  provider            = azurerm.businessdatarget
  for_each            = var.sandboxAzureRuntimes
  name                = each.value["runtimeName"]
  data_factory_name   = each.value["runtimeDatafacName"]
  location            = azurerm_resource_group.sandboxdarg.location
main.tf#L56
resource "azurerm_data_factory_integration_runtime_azure" "azureruntimes" {
  provider            = azurerm.datafactarget
  for_each            = var.azureRuntimes
  name                = each.value["runtimeName"]
  data_factory_name   = each.value["runtimeDatafacName"]
  resource_group_name = each.value["runtimeRgName"]

Review your Terraform file for Azure best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Manages a Data Factory Azure Integration Runtime.

Tips: Best Practices for The Other Azure Data Factory Resources

In addition to the azurerm_data_factory, Azure Data Factory has the other resources that should be configured for security reasons. Please check some examples of those resources and precautions.

risk-label

azurerm_data_factory

Ensure to disable public access

It is better to disable public access for Data Factory, which is enabled as default.

Review your Azure Data Factory settings

In addition to the above, there are other security points you should be aware of making sure that your .tf files are protected in Shisho Cloud.

Azure Resource Manager Example

Azure Resource Manager code does not have the related resource.

Frequently asked questions

What is Azure Data Factory Integration Runtime Azure?

Azure Data Factory Integration Runtime Azure is a resource for Data Factory of Microsoft Azure. Settings can be wrote in Terraform.

Where can I find the example code for the Azure Data Factory Integration Runtime Azure?

For Terraform, the johhess40/Terraform and johhess40/Terraform source code examples are useful. See the Terraform Example section for further details.