Skip to content

Commit

Permalink
set optional fields for table
Browse files Browse the repository at this point in the history
  • Loading branch information
devuonocar committed Oct 4, 2023
1 parent 282ed91 commit 91d8471
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions modules/bigquery-dataset/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -152,10 +152,10 @@ variable "tables" {
start = number
}))
time = optional(object({
expiration_ms = number
field = string
expiration_ms = optional(number)
field = optional(string)
type = string
require_partition_filter = bool
require_partition_filter = optional(bool)
}))
}))
}))
Expand Down Expand Up @@ -198,10 +198,10 @@ variable "materialized_views" {
start = number
}))
time = optional(object({
expiration_ms = number
field = string
expiration_ms = optional(number)
field = optional(string)
type = string
require_partition_filter = bool
require_partition_filter = optional(bool)
}))
}))
}))
Expand Down

0 comments on commit 91d8471

Please sign in to comment.