terraform-provider-databricks icon indicating copy to clipboard operation
terraform-provider-databricks copied to clipboard

[FEATURE] ML Feature Store permissions

Open nicolai86 opened this issue 3 years ago • 3 comments
trafficstars

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 avatar Apr 05 '22 20:04 nicolai86

@nicolai86 PR welcome. Adding new permission dimension is relatively trivial - look at notebook_path

nfx avatar Apr 06 '22 03:04 nfx

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.

nfx avatar May 30 '22 10:05 nfx

Following up - is this issue still relevant?

nfx avatar Aug 22 '22 09:08 nfx

Hi, I wondered if there was any change on this issue?

rshanker779 avatar Jun 12 '23 10:06 rshanker779