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 that determines whether mount point for storage account filesystem is created"
184
+
default=false
185
+
}
186
+
187
+
variable"mount_service_principal_client_id" {
188
+
type=string
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"
195
+
default=null
196
+
sensitive=true
197
+
}
198
+
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
+
202
214
variable"mount_adls_passthrough" {
203
215
type=bool
204
-
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"
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"
0 commit comments