You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error: Unsupported argument
on ../../modules/aws/application/snowflake.tf line 1147, in resource "snowflake_procedure_grant" "foo":
1147: arguments = [
An argument named "arguments" is not expected here. Did you mean to define a
block of type "arguments"?
Expected behavior
It should instead show the correct data type, which is a block, not a list:
arguments {
name = "a"
type = "array"
}
arguments {
name = "b"
type = "string"
}
The text was updated successfully, but these errors were encountered:
Provider Version
Describe the bug
The docs for
snowflake_procedure_grant
are wrong:https://github.com/chanzuckerberg/terraform-provider-snowflake/blob/main/examples/resources/snowflake_procedure_grant/resource.tf#L6-L15
This results in an error:
Expected behavior
It should instead show the correct data type, which is a block, not a list:
The text was updated successfully, but these errors were encountered: