Skip to content

Commit f65ab0a

Browse files
authored
fix #227 (#228)
1 parent 6eaf343 commit f65ab0a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

terraform/databricks/databricks-workspace/main.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ resource "azurerm_databricks_workspace" "adl_databricks" {
1515
managed_disk_cmk_rotation_to_latest_version_enabled = var.managed_disk_cmk_rotation_to_latest_version_enabled
1616
public_network_access_enabled = var.public_network_access_enabled
1717
network_security_group_rules_required = var.is_private_endpoint ? "NoAzureDatabricksRules" : "AllRules"
18-
load_balancer_backend_address_pool_id = var.load_balancer_backend_address_pool_id
18+
# Disabling due to https://github.com/Azure/azure-data-labs-modules/issues/227
19+
#load_balancer_backend_address_pool_id = var.load_balancer_backend_address_pool_id
1920
custom_parameters {
2021
nat_gateway_name = var.nat_gateway_name
2122
public_ip_name = var.public_ip_name

terraform/databricks/databricks-workspace/variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ variable "managed_disk_cmk_rotation_to_latest_version_enabled" {
230230

231231
variable "load_balancer_backend_address_pool_id" {
232232
type = string
233-
description = "Resource ID of the Outbound Load balancer Backend Address Pool for Secure Cluster Connectivity (No Public IP) workspace. Changing this forces a new resource to be created."
233+
description = "Resource ID of the Outbound Load balancer Backend Address Pool for Secure Cluster Connectivity (No Public IP) workspace. Changing this forces a new resource to be created. This property is currently disabled and has no effect."
234234
default = null
235235
}
236236

0 commit comments

Comments
 (0)