An Apache Spark-based analytics platform optimized for Azure.
Hi Pádraic Slattery,
it looks like you’ve run into the “Region West Europe doesn’t support this serverless function yet” error because the Terraform resource is expecting the region slug (and in some cases the feature isn’t yet GA in that region) rather than the friendly name. A few things to check:
- Use the correct region identifier
- Terraform for Azure Databricks expects
region = "westeurope"(all lower-case, no spaces), not"West Europe"or any other alias.
- Terraform for Azure Databricks expects
- Confirm serverless networking is actually available in West Europe for your account
- The Databricks public feature-availability table shows serverless compute is available, but network connectivity configurations (NCCs) for private-endpoint-backed serverless workloads may still be in preview or rolling out in West Europe.
- You need a Premium-tier account and to have the NCC feature enabled in that region.
- Sample Terraform snippet
resource "databricks_mws_network_connectivity_config" "ncc" {
account_id = var.databricks_account_id
name = "my-serverless-ncc"
region = "westeurope"
// egress rules, private endpoint rules, etc.
}
- If you still get the “doesn’t support…” error after using the slug and confirming your plan, it likely means the service hasn’t been turned on in West Europe yet. In that case your options are:
- Open an Azure support ticket to get the feature enabled in your tenant/region (preview customers can sometimes get early access)
- Deploy your NCC in a region where serverless‐networking is fully GA (for example East US or North Europe) until West Europe catches up
Hope that gets you unblocked! If you’re still seeing the error, could you please share:
- The exact Terraform snippet you’re running (especially what you’ve got under
region). - Whether your Databricks account is on Premium or Trial tier.
- Which workspace(s) you attached this NCC to and whether those workspaces have been updated/restarted since you created the NCC.
References:
- Create NCC via Terraform (provider v1.113.0)
https://registry.terraform.io/providers/databrickslabs/databricks/latest/docs/resources/mws_network_connectivity_config - Serverless network connectivity in Azure Databricks (NCC overview & GUI steps)
https://learn.microsoft.com/azure/databricks/security/network/serverless-network-security/serverless-private-link - CLI command to create NCC (for comparison)
https://learn.microsoft.com/azure/databricks/dev-tools/cli/reference/account-network-connectivity-commands#databricks-account-network-connectivity-create-network-connectivity-configuration Hope this helps. If you have any follow-up questions, please let me know. I would be happy to help.