Azure Data Factory Integration Runtime Self Hosted

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

azurerm_data_factory_integration_runtime_self_hosted (Terraform)

The Integration Runtime Self Hosted in Data Factory can be configured in Terraform with the resource name azurerm_data_factory_integration_runtime_self_hosted. The following sections describe 4 examples of how to use the resource and its parameters.

Example Usage from GitHub

main.tf#L9
resource "azurerm_data_factory_integration_runtime_self_hosted" "ir" {
    for_each = var.df_irs
    name                = each.value["name"]
    resource_group_name = lookup(var.resource_groups, each.value["rg_key"], null)["rg_name"]
    data_factory_name   = lookup(var.data_factory, each.value["df_key"], null)["name"]
    description = each.value["description"]
main.tf#L1
resource "azurerm_data_factory_integration_runtime_self_hosted" "integration_runtime" {
  name                = var.name
  resource_group_name = var.resource_group_name
  data_factory_name   = var.data_factory_name
main.tf#L1
resource "azurerm_data_factory_integration_runtime_self_hosted" "integration_runtime" {
  name                = var.name
  resource_group_name = var.resource_group_name
  data_factory_name   = var.data_factory_name

  rbac_authorization {
adf.tf#L17
resource "azurerm_data_factory_integration_runtime_self_hosted" "this" {
  name                = var.integration_runtime_name
  data_factory_name   = azurerm_data_factory.this.name
  resource_group_name = azurerm_data_factory.this.resource_group_name
}

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 Self-hosted 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.

Microsoft.DataFactory/factories/integrationruntimes (Azure Resource Manager)

The factories/integrationruntimes in Microsoft.DataFactory can be configured in Azure Resource Manager with the resource name Microsoft.DataFactory/factories/integrationruntimes. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Frequently asked questions

What is Azure Data Factory Integration Runtime Self Hosted?

Azure Data Factory Integration Runtime Self Hosted 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 Self Hosted?

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