terraform/databricks setting default_catalog_name
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-23-2023 09:46 AM
While configuring databricks, we've set the "default_catalog_name", which sets the default schema when users connect via an ODBC connection. While the naming isn't consistent, this does have one desired effect, that is, when users connect, it defaults to showing the gold schema. However, for some tools, it also limits users to that schema. I also cannot find the equivalent option in the UI in databricks. Does anyone know where this option is located? I'd like to find more documentation on this setting if possible since it is having undesired side effects
resource "databricks_metastore_assignment" "this" {
metastore_id = databricks_metastore.myco_metastore.id
workspace_id = local.workspace_id
default_catalog_name = "gold"
}

