-> Note This resource has an evolving API, which may change in future versions of the provider.
Manages workspace configuration for expert usage. Currently, more than one instance of resource can exist in Terraform state, though there's no deterministic behavior, when they manage the same property. We strongly recommend to use a single databricks_workspace_conf
per workspace.
Allows specification of custom configuration properties for expert usage:
enableIpAccessLists
- enables the use of databricks_ip_access_list resources
resource "databricks_workspace_conf" "this" {
custom_config = {
"enableIpAccessLists": true
}
}
The following arguments are available:
custom_config
- (Required) Key-value map of strings, that represent workspace configuration. Upon resource deletion, properties that start withenable
orenforce
will be reset tofalse
value, regardless of initial default one.
This resource doesn't support import.