Add missing descriptions to owner and name

pull/10682/head
Sean Chittenden 10 years ago
parent deb91f61ce
commit 02dea2edd9
No known key found for this signature in database
GPG Key ID: 4EBC9DC16C2E5E16

@ -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,

Loading…
Cancel
Save