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{ Schema: map[string]*schema.Schema{
"name": { "name": {
Type: schema.TypeString, Type: schema.TypeString,
Required: true, Required: true,
Description: "The PostgreSQL database name to connect to",
}, },
"owner": { "owner": {
Type: schema.TypeString, Type: schema.TypeString,
Optional: true, Optional: true,
Computed: true, Description: "The role name of the user who will own the new database",
}, },
"template": { "template": {
Type: schema.TypeString, Type: schema.TypeString,