Skip to content

Commit

Permalink
fix: change incorrect select privilege to usage (#1681)
Browse files Browse the repository at this point in the history
Co-authored-by: Onel Harrison <[email protected]>
  • Loading branch information
onelharrison and onelharrison authored Apr 4, 2023
1 parent 5dd447f commit 3d8f5b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/procedure_grant.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ resource "snowflake_procedure_grant" "grant" {
schema_name = "schema"
procedure_name = "procedure"
argument_data_types = ["array", "string"]
privilege = "SELECT"
privilege = "USAGE"
roles = ["role1", "role2"]
shares = ["share1", "share2"]
on_future = false
Expand Down
2 changes: 1 addition & 1 deletion examples/resources/snowflake_procedure_grant/resource.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "snowflake_procedure_grant" "grant" {
schema_name = "schema"
procedure_name = "procedure"
argument_data_types = ["array", "string"]
privilege = "SELECT"
privilege = "USAGE"
roles = ["role1", "role2"]
shares = ["share1", "share2"]
on_future = false
Expand Down

0 comments on commit 3d8f5b5

Please sign in to comment.