Skip to content

Commit 6c2b109

Browse files
committed
fixing description on variables
1 parent e6379eb commit 6c2b109

File tree

1 file changed

+5
-12
lines changed

1 file changed

+5
-12
lines changed

variables.tf

Lines changed: 5 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,10 @@ variable "spark_conf" {
111111

112112
variable "add_instance_profile_to_workspace" {
113113
description = "Existing AWS instance profile ARN"
114-
type = any
114+
type = bool
115115
default = false
116116
}
117117

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-
124118
variable "is_meta_instance_profile" {
125119
description = "Whether the instance profile is a meta instance profile. Used only in IAM credential passthrough."
126120
type = any
@@ -199,26 +193,25 @@ variable "language" {
199193
}
200194

201195
variable "local_path" {
202-
description = "notebook location on user machine"
196+
description = "Notebook location on user machine"
203197
type = string
204198
default = null
205199
}
206200

207-
208201
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"
210203
type = any
211204
default = []
212205
}
213206

214207
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"
216209
type = any
217210
default = []
218211
}
219212

220213
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"
222215
type = any
223216
default = []
224217
}

0 commit comments

Comments
 (0)