Skip to content
This repository has been archived by the owner on Jan 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #84 from vitorbari/patch-1
Browse files Browse the repository at this point in the history
Update user argument on grant docs
  • Loading branch information
davidji99 authored Jun 13, 2019
2 parents 46dba1c + 1b4f63d commit ec802cb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions website/docs/r/grant.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ a user on a MySQL server.

```hcl
resource "mysql_user" "jdoe" {
user = "jdoe"
host = "example.com"
password = "password"
user = "jdoe"
host = "example.com"
plaintext_password = "password"
}
resource "mysql_grant" "jdoe" {
Expand Down Expand Up @@ -46,9 +46,9 @@ resource "mysql_grant" "developer" {

```hcl
resource "mysql_user" "jdoe" {
user = "jdoe"
host = "example.com"
password = "password"
user = "jdoe"
host = "example.com"
plaintext_password = "password"
}
resource "mysql_role" "developer" {
Expand Down

0 comments on commit ec802cb

Please sign in to comment.