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
Copy file name to clipboardExpand all lines: variables.tf
+5-12Lines changed: 5 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -111,16 +111,10 @@ variable "spark_conf" {
111
111
112
112
variable"add_instance_profile_to_workspace" {
113
113
description="Existing AWS instance profile ARN"
114
-
type=any
114
+
type=bool
115
115
default=false
116
116
}
117
117
118
-
variable"instance_profile_arn" {
119
-
description="ARN attribute of aws_iam_instance_profile output, the EC2 instance profile association to AWS IAM role. This ARN would be validated upon resource creation and it's not possible to skip validation."
120
-
type=any
121
-
default=null
122
-
}
123
-
124
118
variable"is_meta_instance_profile" {
125
119
description="Whether the instance profile is a meta instance profile. Used only in IAM credential passthrough."
126
120
type=any
@@ -199,26 +193,25 @@ variable "language" {
199
193
}
200
194
201
195
variable"local_path" {
202
-
description="notebook location on user machine"
196
+
description="Notebook location on user machine"
203
197
type=string
204
198
default=null
205
199
}
206
200
207
-
208
201
variable"local_notebooks" {
209
-
description="nested block: NestingSet, min items: 0, max items: 0"
202
+
description="Local path to the notebook(s) that will be used by the job"
210
203
type=any
211
204
default=[]
212
205
}
213
206
214
207
variable"remote_notebooks" {
215
-
description="nested block: NestingSet, min items: 0, max items: 0"
208
+
description="Path to notebook(s) in the databricks workspace that will be used by the job"
216
209
type=any
217
210
default=[]
218
211
}
219
212
220
213
variable"notebooks" {
221
-
description="nested block: NestingSet, min items: 0, max items: 0"
214
+
description="Local path to the notebook(s) that will be deployed"
0 commit comments