Add missing descriptions to owner and name
This commit is contained in:
parent
deb91f61ce
commit
02dea2edd9
|
@ -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…
Reference in New Issue