Azure Data Factory Integration Runtime Managed
This page shows how to write Terraform and Azure Resource Manager for Data Factory Integration Runtime Managed and write them securely.
azurerm_data_factory_integration_runtime_managed (Terraform)
The Integration Runtime Managed in Data Factory can be configured in Terraform with the resource name azurerm_data_factory_integration_runtime_managed. The following sections describe 3 examples of how to use the resource and its parameters.
Example Usage from GitHub
resource "azurerm_data_factory_integration_runtime_managed" "this" {
data_factory_name = var.data_factory_name
description = var.description
edition = var.edition
license_type = var.license_type
location = var.location
resource "azurerm_data_factory_integration_runtime_managed" "this" {
data_factory_name = var.data_factory_name
description = var.description
edition = var.edition
license_type = var.license_type
location = var.location
resource "azurerm_data_factory_integration_runtime_managed" "main" {
name = var.data_factory_runtime_name
data_factory_name = azurerm_data_factory.main.name
resource_group_name = data.azurerm_resource_group.main.name
location = data.azurerm_resource_group.main.location
node_size = var.node_size
Parameters
-
data_factory_namerequired - string -
descriptionoptional - string -
editionoptional - string -
idoptional computed - string -
license_typeoptional - string -
locationrequired - string -
max_parallel_executions_per_nodeoptional - number -
namerequired - string -
node_sizerequired - string -
number_of_nodesoptional - number -
resource_group_namerequired - string -
catalog_infolist block-
administrator_loginoptional - string -
administrator_passwordoptional - string -
pricing_tieroptional - string -
server_endpointrequired - string
-
-
custom_setup_scriptlist block-
blob_container_urirequired - string -
sas_tokenrequired - string
-
-
timeoutssingle block -
vnet_integrationlist block-
subnet_namerequired - string -
vnet_idrequired - string
-
Explanation in Terraform Registry
Manages an Azure Data Factory Managed Integration Runtime.
NOTE: The
azurerm_data_factory_integration_runtime_managedresource has been superseded by theazurerm_data_factory_integration_runtime_azure_ssisresource. The existingazurerm_data_factory_integration_runtime_managedresource will be deprecated (but still available) in version 3.0 of the AzureRM Terraform Provider - we recommend using theazurerm_data_factory_integration_runtime_azure_ssisresource for new deployments.
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.
azurerm_data_factory
Ensure to disable public access
It is better to disable public access for Data Factory, which is enabled as default.
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 Managed?
Azure Data Factory Integration Runtime Managed 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 Managed?
For Terraform, the niveklabs/azurerm, kevinhead/azurerm and microsoft/cobalt source code examples are useful. See the Terraform Example section for further details.