Skip to content

Latest commit

 

History

History
32 lines (21 loc) · 1.1 KB

workspace_conf.md

File metadata and controls

32 lines (21 loc) · 1.1 KB
subcategory
Workspace

databricks_workspace_conf Resource

-> 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.

Example Usage

Allows specification of custom configuration properties for expert usage:

resource "databricks_workspace_conf" "this" {
    custom_config = {
        "enableIpAccessLists": true
    }
}

Argument Reference

The following arguments are available:

  • custom_config - (Required) Key-value map of strings, that represent workspace configuration. Upon resource deletion, properties that start with enable or enforce will be reset to false value, regardless of initial default one.

Import

This resource doesn't support import.