Skip to content

Commit

Permalink
docs: fix reference to account role resource (#3101)
Browse files Browse the repository at this point in the history
  • Loading branch information
joscha committed Sep 24, 2024
1 parent 0a77383 commit 810df0d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/grant_account_role.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ resource "snowflake_user" "user" {
}
resource "snowflake_grant_account_role" "g" {
role_name = snowflake_role.role.name
role_name = snowflake_account_role.role.name
user_name = snowflake_user.user.name
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,6 @@ resource "snowflake_user" "user" {
}

resource "snowflake_grant_account_role" "g" {
role_name = snowflake_role.role.name
role_name = snowflake_account_role.role.name
user_name = snowflake_user.user.name
}

0 comments on commit 810df0d

Please sign in to comment.