[FEATURE] Automatic workspace assignment to metastore in the region via terraform
Use-cases
Enable Automatic workspace assignment to metastore in the region via terraform
Proposal
resource "databricks_metastore" "this" { auto_workspace_assignment = true name = "primary" storage_root = "gs://${google_storage_bucket.unity_metastore.name}" owner = "uc admins" region = us-east1 force_destroy = true
}
I'd like to know the ETA on this feature request as well. Thank you
We would also like to be able to control this via Terraform. The flag currently doesn't even seem to be available via the databricks CLI. But when inspecting the network call, you can see it in the API endpoint payload:
// UpdateMetastoreMutationNative
{
"data": {
"accountsmanagerUpdateMetastore": {
"metastoreInfo": {
// ...
"metastoreAssignmentStatus": "AUTO_ASSIGNMENT_ENABLED",
// ...
},
// ...
}
}
}
Any news on this feature?
There is still no public API