File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -62,6 +62,15 @@ resource "databricks_cluster" "cluster" {
62
62
}
63
63
}
64
64
65
+ dynamic "init_scripts" {
66
+ for_each = each. value . init_scripts_abfss != null ? each. value . init_scripts_abfss : []
67
+ content {
68
+ abfss {
69
+ destination = init_scripts. value
70
+ }
71
+ }
72
+ }
73
+
65
74
dynamic "library" {
66
75
for_each = each. value . pypi_library_repository
67
76
content {
Original file line number Diff line number Diff line change @@ -164,6 +164,7 @@ variable "clusters" {
164
164
init_scripts_workspace = optional (set (string ), [])
165
165
init_scripts_volumes = optional (set (string ), [])
166
166
init_scripts_dbfs = optional (set (string ), [])
167
+ init_scripts_abfss = optional (set (string ), [])
167
168
single_user_name = optional (string , null )
168
169
permissions = optional (set (object ({
169
170
group_name = string
You can’t perform that action at this time.
0 commit comments