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{
|
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,
|
||||||
|
|
Loading…
Reference in New Issue