You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error_message="To mount ADLS Storage, please provide prerequisite Service Principal values - 'mount_service_principal_object_id', 'mount_service_principal_secret', 'mount_service_principal_tenant_id'."
description="Boolean flag to use mount options for credentals passthrough. Should be used with mount_cluster_name, specified cluster should have option cluster_conf_passthrought == true"
183
+
description="Boolean flag that determines whether mount point for storage account filesystem is created"
207
184
default=false
208
185
}
209
186
210
-
variable"mount_cluster_name" {
187
+
variable"mount_service_principal_client_id" {
211
188
type=string
212
-
description="Name of the cluster that will be used during storage mounting. If mount_adls_passthrough == true, cluster should also have option cluster_conf_passthrought == true"
189
+
description="Application(client) Id of Service Principal used to perform storage account mounting"
190
+
default=null
191
+
}
192
+
variable"mount_service_principal_secret" {
193
+
type=string
194
+
description="Service Principal Secret used to perform storage account mounting"
213
195
default=null
196
+
sensitive=true
214
197
}
215
198
216
-
variable"mount_enabled" {
199
+
variable"mount_service_principal_tenant_id" {
200
+
type=string
201
+
description="Service Principal tenant id used to perform storage account mounting"
202
+
default=null
203
+
}
204
+
205
+
variable"mountpoints" {
206
+
type=map(object({
207
+
storage_account_name =string
208
+
container_name =string
209
+
}))
210
+
description="Mountpoints for databricks"
211
+
default={}
212
+
}
213
+
214
+
variable"mount_adls_passthrough" {
217
215
type=bool
218
-
description="Boolean flag to enable ADLS mount to Databricks"
216
+
description="Boolean flag to use mount options for credentials passthrough. Should be used with mount_cluster_name, specified cluster should have option cluster_conf_passthrought == true"
219
217
default=false
220
218
}
219
+
220
+
variable"mount_cluster_name" {
221
+
type=string
222
+
description="Name of the cluster that will be used during storage mounting. If mount_adls_passthrough == true, cluster should also have option cluster_conf_passthrought == true"
0 commit comments