We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 41d0f5f commit 430e3f4Copy full SHA for 430e3f4
mount.tf
@@ -1,9 +1,9 @@
1
resource "databricks_mount" "adls" {
2
for_each = var.mountpoints
3
4
- name = each.key
+ name = each.key
5
cluster_id = var.mount_cluster_name != null ? databricks_cluster.cluster[var.mount_cluster_name].id : null
6
- uri = "abfss://${each.value["container_name"]}@${each.value["storage_account_name"]}.dfs.core.windows.net"
+ uri = "abfss://${each.value["container_name"]}@${each.value["storage_account_name"]}.dfs.core.windows.net"
7
extra_configs = var.mount_adls_passthrough ? {
8
"fs.azure.account.auth.type" : "CustomAccessToken",
9
"fs.azure.account.custom.token.provider.class" : "{{sparkconf/spark.databricks.passthrough.adls.gen2.tokenProviderClassName}}"
0 commit comments