Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-20-2023 04:47 AM
Hello,
This can normally be achieved using this terraform resource:
resource "databricks_workspace_conf" "this" {
custom_config = {
"enableProjectsAllowList": true,
"projectsAllowList": "url1,url2,url3",
}
}Cheers