File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ resource "databricks_cluster" "cluster" {
31
31
instance_pool_id = var. deploy_worker_instance_pool == true ? join (" " , databricks_instance_pool. worker_instance_nodes . * . id ) : null
32
32
driver_node_type_id = var. deploy_worker_instance_pool != true ? local. driver_node_type : null
33
33
num_workers = var. fixed_value != null ? var. fixed_value : null
34
-
34
+ data_security_mode = var . data_security_mode
35
35
dynamic "autoscale" {
36
36
for_each = var. fixed_value == null && var. auto_scaling != null ? [var . auto_scaling ] : []
37
37
content {
Original file line number Diff line number Diff line change @@ -364,3 +364,9 @@ variable "libraries" {
364
364
description = " Installs a library on databricks_cluster"
365
365
default = {}
366
366
}
367
+
368
+ variable "data_security_mode" {
369
+ description = " Access mode"
370
+ type = string
371
+ default = " NONE"
372
+ }
You can’t perform that action at this time.
0 commit comments