Skip to content

Commit 365f499

Browse files
authored
fix(doc): Typo in postgresql_grant_role doc (#412)
1 parent 04cecda commit 365f499

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

website/docs/r/postgresql_grant_role.html.markdown

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ resource "postgresql_grant_role" "grant_root" {
2727
~> **Note:** If you use `postgresql_grant_role` for a role that you also manage with a `postgresql_role` resource, you need to ignore the changes of the `roles` attribute in the `postgresql_role` resource or they will fight over what your role grants should be. e.g.:
2828
```hcl
2929
resource "postgresql_role" "bob" {
30-
role = "bob"
30+
name = "bob"
3131
3232
lifecycle {
3333
ignore_changes = [

0 commit comments

Comments
 (0)