Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-08-2023 08:51 AM
Hi,
I am provisioning databricks workspaces using terraform and want to add specific github repo url that can be used. In UI there is an option for that but when it comes to terraform there is nothing specific.
I came across custom_config option here but not sure how to use this for adding github url list. Can anyone help me with this?
1 ACCEPTED SOLUTION
Accepted Solutions
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
1 REPLY 1
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

