hashicorp / terraform-provider-azurerm

Terraform provider for Azure Resource Manager
https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs
Mozilla Public License 2.0
4.52k stars 4.6k forks source link

Support for sharing a integration runtime with other data factories #12754

Open slowesss opened 3 years ago

slowesss commented 3 years ago

Community Note

Description

I would like the ability to share the integration runtime with other data factories, this is currently available in the portal.

New or Affected Resource(s)

azurerm_data_factory_integration_runtime_self_hosted

Potential Terraform Configuration

resource "azurerm_data_factory_integration_runtime_self_hosted" "example"  {
    ...  
     shared {
        data_factory_id = "xxx"  
     }
     shared {
        data_factory_id = "xxx"  
     }
    ... 

}

References

jhumigas commented 2 years ago

Isn't this related to this example: share-self-hosted ?