remove computed true for postgres connections

This commit is contained in:
pbthorste 2017-01-11 22:55:50 +01:00
parent 0c1175f78b
commit 11f680a88e
2 changed files with 0 additions and 2 deletions

View File

@ -86,7 +86,6 @@ func resourcePostgreSQLDatabase() *schema.Resource {
dbConnLimitAttr: {
Type: schema.TypeInt,
Optional: true,
Computed: true,
Default: -1,
Description: "How many concurrent connections can be made to this database",
ValidateFunc: validateConnLimit,

View File

@ -78,7 +78,6 @@ func resourcePostgreSQLRole() *schema.Resource {
Type: schema.TypeInt,
Optional: true,
Default: -1,
Computed: true,
Description: "How many concurrent connections can be made with this role",
ValidateFunc: validateConnLimit,
},