Skip to content

Commit

Permalink
fix simplified deployment (#225)
Browse files Browse the repository at this point in the history
  • Loading branch information
jdocampo committed Mar 30, 2023
1 parent 715037d commit 6e2cfa7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion terraform/databricks/databricks-workspace/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ module "adb_sso_pe" {
private_connection_resource_id = azurerm_databricks_workspace.adl_databricks[0].id
subresource_names = ["browser_authentication"]
is_manual_connection = false
private_dns_zone_ids = var.frontend_private_dns_zone_ids
private_dns_zone_ids = var.private_link_deployment_type == "simplified" ? var.backend_private_dns_zone_ids : var.frontend_private_dns_zone_ids
tags = var.tags
module_enabled = var.module_enabled && var.is_private_endpoint && (var.is_web_auth_workspace || var.private_link_deployment_type == "webauth")
}

0 comments on commit 6e2cfa7

Please sign in to comment.