IntegrationRuntimeManaged

Manages an Azure Data Factory Managed Integration Runtime.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var exampleResourceGroup = new Azure.Core.ResourceGroup("exampleResourceGroup", new Azure.Core.ResourceGroupArgs
        {
            Location = "northeurope",
        });
        var exampleFactory = new Azure.DataFactory.Factory("exampleFactory", new Azure.DataFactory.FactoryArgs
        {
            Location = exampleResourceGroup.Location,
            ResourceGroupName = exampleResourceGroup.Name,
        });
        var exampleIntegrationRuntimeManaged = new Azure.DataFactory.IntegrationRuntimeManaged("exampleIntegrationRuntimeManaged", new Azure.DataFactory.IntegrationRuntimeManagedArgs
        {
            DataFactoryName = exampleFactory.Name,
            ResourceGroupName = exampleResourceGroup.Name,
            Location = exampleResourceGroup.Location,
            NodeSize = "Standard_D8_v3",
        });
    }

}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/core"
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/datafactory"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        exampleResourceGroup, err := core.NewResourceGroup(ctx, "exampleResourceGroup", &core.ResourceGroupArgs{
            Location: pulumi.String("northeurope"),
        })
        if err != nil {
            return err
        }
        exampleFactory, err := datafactory.NewFactory(ctx, "exampleFactory", &datafactory.FactoryArgs{
            Location:          exampleResourceGroup.Location,
            ResourceGroupName: exampleResourceGroup.Name,
        })
        if err != nil {
            return err
        }
        _, err = datafactory.NewIntegrationRuntimeManaged(ctx, "exampleIntegrationRuntimeManaged", &datafactory.IntegrationRuntimeManagedArgs{
            DataFactoryName:   exampleFactory.Name,
            ResourceGroupName: exampleResourceGroup.Name,
            Location:          exampleResourceGroup.Location,
            NodeSize:          pulumi.String("Standard_D8_v3"),
        })
        if err != nil {
            return err
        }
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example_resource_group = azure.core.ResourceGroup("exampleResourceGroup", location="northeurope")
example_factory = azure.datafactory.Factory("exampleFactory",
    location=example_resource_group.location,
    resource_group_name=example_resource_group.name)
example_integration_runtime_managed = azure.datafactory.IntegrationRuntimeManaged("exampleIntegrationRuntimeManaged",
    data_factory_name=example_factory.name,
    resource_group_name=example_resource_group.name,
    location=example_resource_group.location,
    node_size="Standard_D8_v3")
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const exampleResourceGroup = new azure.core.ResourceGroup("exampleResourceGroup", {location: "northeurope"});
const exampleFactory = new azure.datafactory.Factory("exampleFactory", {
    location: exampleResourceGroup.location,
    resourceGroupName: exampleResourceGroup.name,
});
const exampleIntegrationRuntimeManaged = new azure.datafactory.IntegrationRuntimeManaged("exampleIntegrationRuntimeManaged", {
    dataFactoryName: exampleFactory.name,
    resourceGroupName: exampleResourceGroup.name,
    location: exampleResourceGroup.location,
    nodeSize: "Standard_D8_v3",
});

Create a IntegrationRuntimeManaged Resource

def IntegrationRuntimeManaged(resource_name, opts=None, catalog_info=None, custom_setup_script=None, data_factory_name=None, description=None, edition=None, license_type=None, location=None, max_parallel_executions_per_node=None, name=None, node_size=None, number_of_nodes=None, resource_group_name=None, vnet_integration=None, __props__=None);
name string
The unique name of the resource.
args IntegrationRuntimeManagedArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name str
The unique name of the resource.
opts ResourceOptions
A bag of options that control this resource's behavior.
ctx Context
Context object for the current deployment.
name string
The unique name of the resource.
args IntegrationRuntimeManagedArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args IntegrationRuntimeManagedArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.

IntegrationRuntimeManaged Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Programming Model docs.

Inputs

The IntegrationRuntimeManaged resource accepts the following input properties:

DataFactoryName string

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

NodeSize string

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

ResourceGroupName string

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

CatalogInfo IntegrationRuntimeManagedCatalogInfoArgs

A catalog_info block as defined below.

CustomSetupScript IntegrationRuntimeManagedCustomSetupScriptArgs

A custom_setup_script block as defined below.

Description string
Edition string

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

LicenseType string

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

Location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

MaxParallelExecutionsPerNode int

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

Name string

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

NumberOfNodes int

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

VnetIntegration IntegrationRuntimeManagedVnetIntegrationArgs

A vnet_integration block as defined below.

DataFactoryName string

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

NodeSize string

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

ResourceGroupName string

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

CatalogInfo IntegrationRuntimeManagedCatalogInfo

A catalog_info block as defined below.

CustomSetupScript IntegrationRuntimeManagedCustomSetupScript

A custom_setup_script block as defined below.

Description string
Edition string

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

LicenseType string

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

Location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

MaxParallelExecutionsPerNode int

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

Name string

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

NumberOfNodes int

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

VnetIntegration IntegrationRuntimeManagedVnetIntegration

A vnet_integration block as defined below.

dataFactoryName string

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

nodeSize string

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

resourceGroupName string

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

catalogInfo IntegrationRuntimeManagedCatalogInfo

A catalog_info block as defined below.

customSetupScript IntegrationRuntimeManagedCustomSetupScript

A custom_setup_script block as defined below.

description string
edition string

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

licenseType string

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

maxParallelExecutionsPerNode number

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

name string

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

numberOfNodes number

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

vnetIntegration IntegrationRuntimeManagedVnetIntegration

A vnet_integration block as defined below.

data_factory_name str

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

node_size str

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

resource_group_name str

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

catalog_info Dict[IntegrationRuntimeManagedCatalogInfo]

A catalog_info block as defined below.

custom_setup_script Dict[IntegrationRuntimeManagedCustomSetupScript]

A custom_setup_script block as defined below.

description str
edition str

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

license_type str

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

location str

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

max_parallel_executions_per_node float

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

name str

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

number_of_nodes float

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

vnet_integration Dict[IntegrationRuntimeManagedVnetIntegration]

A vnet_integration block as defined below.

Outputs

All input properties are implicitly available as output properties. Additionally, the IntegrationRuntimeManaged resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.

Look up an Existing IntegrationRuntimeManaged Resource

Get an existing IntegrationRuntimeManaged resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

static get(resource_name, id, opts=None, catalog_info=None, custom_setup_script=None, data_factory_name=None, description=None, edition=None, license_type=None, location=None, max_parallel_executions_per_node=None, name=None, node_size=None, number_of_nodes=None, resource_group_name=None, vnet_integration=None, __props__=None);
func GetIntegrationRuntimeManaged(ctx *Context, name string, id IDInput, state *IntegrationRuntimeManagedState, opts ...ResourceOption) (*IntegrationRuntimeManaged, error)
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.

The following state arguments are supported:

CatalogInfo IntegrationRuntimeManagedCatalogInfoArgs

A catalog_info block as defined below.

CustomSetupScript IntegrationRuntimeManagedCustomSetupScriptArgs

A custom_setup_script block as defined below.

DataFactoryName string

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

Description string
Edition string

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

LicenseType string

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

Location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

MaxParallelExecutionsPerNode int

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

Name string

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

NodeSize string

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

NumberOfNodes int

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

ResourceGroupName string

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

VnetIntegration IntegrationRuntimeManagedVnetIntegrationArgs

A vnet_integration block as defined below.

CatalogInfo IntegrationRuntimeManagedCatalogInfo

A catalog_info block as defined below.

CustomSetupScript IntegrationRuntimeManagedCustomSetupScript

A custom_setup_script block as defined below.

DataFactoryName string

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

Description string
Edition string

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

LicenseType string

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

Location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

MaxParallelExecutionsPerNode int

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

Name string

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

NodeSize string

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

NumberOfNodes int

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

ResourceGroupName string

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

VnetIntegration IntegrationRuntimeManagedVnetIntegration

A vnet_integration block as defined below.

catalogInfo IntegrationRuntimeManagedCatalogInfo

A catalog_info block as defined below.

customSetupScript IntegrationRuntimeManagedCustomSetupScript

A custom_setup_script block as defined below.

dataFactoryName string

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

description string
edition string

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

licenseType string

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

location string

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

maxParallelExecutionsPerNode number

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

name string

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

nodeSize string

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

numberOfNodes number

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

resourceGroupName string

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

vnetIntegration IntegrationRuntimeManagedVnetIntegration

A vnet_integration block as defined below.

catalog_info Dict[IntegrationRuntimeManagedCatalogInfo]

A catalog_info block as defined below.

custom_setup_script Dict[IntegrationRuntimeManagedCustomSetupScript]

A custom_setup_script block as defined below.

data_factory_name str

Specifies the name of the Data Factory the Managed Integration Runtime belongs to. Changing this forces a new resource to be created.

description str
edition str

The Managed Integration Runtime edition. Valid values are Standard and Enterprise. Defaults to Standard.

license_type str

The type of the license that is used. Valid values are LicenseIncluded and BasePrize. Defaults to LicenseIncluded.

location str

Specifies the supported Azure location where the resource exists. Changing this forces a new resource to be created.

max_parallel_executions_per_node float

Defines the maximum parallel executions per node. Defaults to 1. Max is 16.

name str

Specifies the name of the Managed Integration Runtime. Changing this forces a new resource to be created. Must be globally unique. See the Microsoft documentation for all restrictions.

node_size str

The size of the nodes on which the Managed Integration Runtime runs. Valid values are: Standard_D2_v3, Standard_D4_v3, Standard_D8_v3, Standard_D16_v3, Standard_D32_v3, Standard_D64_v3, Standard_E2_v3, Standard_E4_v3, Standard_E8_v3, Standard_E16_v3, Standard_E32_v3, Standard_E64_v3, Standard_D1_v2, Standard_D2_v2, Standard_D3_v2, Standard_D4_v2, Standard_A4_v2 and Standard_A8_v2

number_of_nodes float

Number of nodes for the Managed Integration Runtime. Max is 10. Defaults to 1.

resource_group_name str

The name of the resource group in which to create the Managed Integration Runtime. Changing this forces a new resource to be created.

vnet_integration Dict[IntegrationRuntimeManagedVnetIntegration]

A vnet_integration block as defined below.

Supporting Types

IntegrationRuntimeManagedCatalogInfo

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

AdministratorLogin string

Administrator login name for the SQL Server.

AdministratorPassword string

Administrator login password for the SQL Server.

ServerEndpoint string

The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.

PricingTier string

Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, Standard, Premium and PremiumRS.

AdministratorLogin string

Administrator login name for the SQL Server.

AdministratorPassword string

Administrator login password for the SQL Server.

ServerEndpoint string

The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.

PricingTier string

Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, Standard, Premium and PremiumRS.

administratorLogin string

Administrator login name for the SQL Server.

administratorPassword string

Administrator login password for the SQL Server.

serverEndpoint string

The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.

pricingTier string

Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, Standard, Premium and PremiumRS.

administratorPassword str

Administrator login password for the SQL Server.

administrator_login str

Administrator login name for the SQL Server.

serverEndpoint str

The endpoint of an Azure SQL Server that will be used to host the SSIS catalog.

pricing_tier str

Pricing tier for the database that will be created for the SSIS catalog. Valid values are: Basic, Standard, Premium and PremiumRS.

IntegrationRuntimeManagedCustomSetupScript

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

BlobContainerUri string

The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

SasToken string

A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

BlobContainerUri string

The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

SasToken string

A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

blobContainerUri string

The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

sasToken string

A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

blobContainerUri str

The blob endpoint for the container which contains a custom setup script that will be run on every node on startup. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

sasToken str

A container SAS token that gives access to the files. See https://docs.microsoft.com/en-us/azure/data-factory/how-to-configure-azure-ssis-ir-custom-setup for more information.

IntegrationRuntimeManagedVnetIntegration

See the input and output API doc for this type.

See the input and output API doc for this type.

See the input and output API doc for this type.

SubnetName string

Name of the subnet to which the nodes of the Managed Integration Runtime will be added.

VnetId string

ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.

SubnetName string

Name of the subnet to which the nodes of the Managed Integration Runtime will be added.

VnetId string

ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.

subnetName string

Name of the subnet to which the nodes of the Managed Integration Runtime will be added.

vnetId string

ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.

subnetName str

Name of the subnet to which the nodes of the Managed Integration Runtime will be added.

vnetId str

ID of the virtual network to which the nodes of the Managed Integration Runtime will be added.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.