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.53k stars 4.6k forks source link

Support for Azure AI Studio/Project (Microsoft.MachineLearningServices/workspaces) #24454

Open jayendranarumugam opened 8 months ago

jayendranarumugam commented 8 months ago

Is there an existing issue for this?

Community Note

Description

There is a new resource called Azure AI Project which was a different kind (kind = project) of family with-in Microsoft.MachineLearningServices/workspaces . Hence would like to enhance the azurerm_machine_learning_workspace to include this property.

This has been available latest stable API-Version 2023-10-01

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

azurerm_machine_learning_workspace

Potential Terraform Configuration

resource "azurerm_machine_learning_workspace" "example" {
  name                    = "example-workspace"
  location                = azurerm_resource_group.example.location
  resource_group_name     = azurerm_resource_group.example.name
  application_insights_id = azurerm_application_insights.example.id
  key_vault_id            = azurerm_key_vault.example.id
  storage_account_id      = azurerm_storage_account.example.id
  identity {
    type = "SystemAssigned"
  }

  kind = "Project"

}


### References

_No response_
alex-3sr commented 6 months ago

Hi everyone,

Please, need to have Kind "Hub" too, in more than "Project".

Thank you Regards Alexandre

marvinbuss commented 4 months ago

Any progress on this topic? Would be great to get support for these resource sin the near future.