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.58k stars 4.62k forks source link

Support for Synapse Integration runtime #13381

Closed Satyala closed 7 months ago

Satyala commented 3 years ago

Community Note

Description

To manage an integration runtime in Azure Synapse Studio similar to the Azure Data factory.

New or Affected Resource(s)

Potential Terraform Configuration

## Managed Integration runtime

resource "azurerm_synapse_integration_runtime_managed" "example" {
  name                                   = "example"
  synapse_workspace_name    = azurerm_synapse_workspace.example.name
  resource_group_name          = azurerm_resource_group.example.name
  location                                = azurerm_resource_group.example.location

  compute-type                      = "General"
  core-count                           = 8
}

## SelfHosted Integration runtime

resource "azurerm_synapse_integration_runtime_self_hosted" "example" {
  name                                   = "example"
  synapse_workspace_name    = azurerm_synapse_workspace.example.name
  resource_group_name          = azurerm_resource_group.example.name
  location                                = azurerm_resource_group.example.location  
}

References

https://docs.microsoft.com/en-us/cli/azure/synapse/integration-runtime?view=azure-cli-latest

https://docs.microsoft.com/en-us/powershell/module/az.synapse/set-azsynapseintegrationruntime?view=azps-6.4.0

mybayern1974 commented 3 years ago

@Satyala , assume what you expect has already been supported? https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/synapse_integration_runtime_azure https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/synapse_integration_runtime_self_hosted If so, would you agree if I close this issue?

rcskosir commented 7 months ago

Thank you for taking the time to raise this! I am going to close this with @mybayern1974‘s response with links as completed. If that is not the case, please provide additional information regarding your feature request, thanks!

github-actions[bot] commented 6 months ago

I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further.