Skip to content

Commit 6fcd5d1

Browse files
committed
fix: updated mountpoins variable default type
1 parent eebac39 commit 6fcd5d1

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

variables.tf

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,9 +161,12 @@ variable "node_type" {
161161
}
162162

163163
variable "mountpoints" {
164-
type = map(any)
164+
type = map(object({
165+
storage_account_name = string
166+
container_name = string
167+
}))
165168
description = "Mountpoints for databricks"
166-
default = null
169+
default = {}
167170
}
168171

169172
# Secret Scope variables

0 commit comments

Comments
 (0)