databricks_mlflow_experiment Resource

This resource allows you to manage MLflow experiments in Databricks.

Example Usage

data "databricks_current_user" "me" {}

resource "databricks_mlflow_experiment" "this" {
  name              = "${data.databricks_current_user.me.home}/Sample"
  artifact_location = "dbfs:/tmp/my-experiment"
  description       = "My MLflow experiment description"
}

Argument Reference

The following arguments are supported:

Attribute Reference

In addition to all arguments above, the following attributes are exported:

Access Control

Import

The experiment resource can be imported using the id of the experiment

terraform import databricks_mlflow_experiment.this <experiment-id>

The following resources are often used in the same context: