databricks_mws_ncc_binding Resource

Allows you to attach a Network Connectivity Config object to a databricks_mws_workspaces resource to create a Databricks Workspace that leverages serverless network connectivity configs.

The NCC and workspace must be in the same region.

Example Usage

variable "region" {}
variable "prefix" {}

resource "databricks_mws_network_connectivity_config" "ncc" {
  provider = databricks.account
  name     = "Network Connectivity Config for ${var.prefix}"
  region   = var.region
}

resource "databricks_mws_ncc_binding" "ncc_binding" {
  provider                       = databricks.account
  network_connectivity_config_id = databricks_mws_network_connectivity_config.ncc.network_connectivity_config_id
  workspace_id                   = var.databricks_workspace_id
}

Argument Reference

The following arguments are available:

The following resources are used in the context: