Skip to content

Commit

Permalink
chore: remove on future
Browse files Browse the repository at this point in the history
  • Loading branch information
PiotrSierkin-Ki committed Jul 11, 2023
1 parent 3a8ec94 commit 7e90acf
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion locals.tf
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,6 @@ locals {
database_name = view_grant.database_name
schema_name = view_grant.schema_name
view_name = view_grant.view_name
on_future = view_grant.on_future
privilege = privilege
}
}]...)
Expand Down
1 change: 0 additions & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ resource "snowflake_view_grant" "this" {
schema_name = each.value.schema_name
view_name = each.value.view_name
privilege = each.value.privilege
on_future = each.value.on_future
roles = [one(snowflake_role.this[*].name)]
}

Expand Down
1 change: 0 additions & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ variable "view_grants" {
database_name = string
schema_name = string
view_name = optional(string)
on_future = optional(bool, false)
privileges = list(string)
}))
default = []
Expand Down

0 comments on commit 7e90acf

Please sign in to comment.