terraform-provider-databricks
terraform-provider-databricks copied to clipboard
[FEATURE] ML Feature Store permissions
Hi there,
Today the databricks provider can't manage permissions associated with ML Feature Stores. It would be nice to have a way for the provider to set permissions for these, ie using
Configuration
data "databricks_ml_feature_store" "this" {
name = "some ml feature"
}
resource "databricks_permissions" "ml_feature_store_permissions" {
feature_store_id = data.databricks_ml_feature_store.this.cluster_id
access_control {
group_name = databricks_group.auto.display_name
permission_level = "CAN_RUN"
}
}
Expected Behavior
Should manage permissions for ML Feature Store
Actual Behavior
Resources doesn't support it, and Data source doesn't exist
@nicolai86 PR welcome. Adding new permission dimension is relatively trivial - look at notebook_path
Thank you for the feature request! Currently, the team operates in a limited capacity, carefully prioritizing, and we cannot provide a timeline to implement this feature. Please make a Pull Request if you'd like to see this feature sooner, and we'll guide you through the journey.
Following up - is this issue still relevant?
Hi, I wondered if there was any change on this issue?