added files

This commit is contained in:
github-actions[bot]
2024-05-15 20:45:38 +00:00
parent 369cd83197
commit 661af04fe8
9 changed files with 282 additions and 0 deletions

View File

@ -0,0 +1,20 @@
resource "azapi_resource" "project" {
type = "Microsoft.MachineLearningServices/workspaces@2024-04-01"
name = "my-ai-project"
location = azurerm_resource_group.default.location
parent_id = azurerm_resource_group.default.id
identity {
type = "SystemAssigned"
}
body = jsonencode({
properties = {
description = "This is my Azure AI PROJECT"
friendlyName = "My Project"
hubResourceId = azapi_resource.hub.id
}
kind = "project"
})
schema_validation_enabled = false
}