Add missing descriptions to owner and name

This commit is contained in:
Sean Chittenden 2016-09-05 23:37:39 -07:00
parent deb91f61ce
commit 02dea2edd9
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16
1 changed files with 6 additions and 5 deletions

View File

@ -19,13 +19,14 @@ func resourcePostgreSQLDatabase() *schema.Resource {
Schema: map[string]*schema.Schema{
"name": {
Type: schema.TypeString,
Required: true,
Type: schema.TypeString,
Required: true,
Description: "The PostgreSQL database name to connect to",
},
"owner": {
Type: schema.TypeString,
Optional: true,
Computed: true,
Type: schema.TypeString,
Optional: true,
Description: "The role name of the user who will own the new database",
},
"template": {
Type: schema.TypeString,