Skip to content

Commit

Permalink
add correct defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
alldoami committed Aug 15, 2024
1 parent 48d293c commit 26d8704
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions databricks-catalog-external-location/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@ variable "catalogs" {
type = list(
object({
name = string
isolation_mode = string
isolation_mode = optional(string, "ISOLATED")
owner = string
all_privileges_groups = list(string)
read_privileges_groups = list(string)
write_privileges_groups = list(string)
read_privileges_groups = optional(list(string), [])
write_privileges_groups = optional(list(string), [])
}))
default = []
}

0 comments on commit 26d8704

Please sign in to comment.