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.54k stars 4.61k forks source link

Support for Azure Machine Learning Regsitries #22565

Open kingofthehill444 opened 1 year ago

kingofthehill444 commented 1 year ago

Is there an existing issue for this?

Community Note

Description

Azure Machine Learning registries enable you to create and use models, environments, components in different workspaces.

This feature request is to add support for Azure Machine Learning Registries to the AzureRM provider.

New or Affected Resource(s)/Data Source(s)

azurerm_machine_learning_registry

Potential Terraform Configuration

resource "azurerm_machine_learning_registry" {
  name              = "example"
  location          = "eastus"
  resource_group_id = azurerm_resource_group.example.id
  sku {
    capacity = 1
    name     = "P3"
    tier     = "Standard"
  }
  identity {
    type         = "SystemAssigned,UserAssigned"
    identity_ids = [azurerm_user_assigned_identity.example.id]
  }
}

References

AZ API Terraform Implementation

wuxu92 commented 1 year ago

The registry resource was blocked by API issue https://github.com/Azure/azure-rest-api-specs/issues/25119 .

kingofthehill444 commented 1 year ago

Is there a plan to fix this so we can get this added to azurerm?

ltutar commented 5 months ago

I also would like to know the planning for this if that is possible.

SebSa commented 4 months ago

is there a plan for this?

wuxu92 commented 4 months ago

I'm now revising this resource again for the new api version should work.

wuxu92 commented 4 months ago

Unfortunately, the upstream API behavior is still blocking this.