Amine
Databricks Employee
Databricks Employee

Hello,

This can normally be achieved using this terraform resource:

resource "databricks_workspace_conf" "this" {
  custom_config = {
    "enableProjectsAllowList": true,
    "projectsAllowList": "url1,url2,url3",
  }
}

Cheers

View solution in original post