Fix missing double quotes in postgresql_database resource

This commit is contained in:
Pablo Porto 2016-03-06 15:50:37 +00:00 committed by James Nugent
parent a9fd7b4f1a
commit b3ecf8eb73
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ server.
```
resource "postgresql_database" "my_db" {
name = "my_db"
owner = "my_role
owner = "my_role"
}
```