remove computed true for postgres connections
This commit is contained in:
parent
0c1175f78b
commit
11f680a88e
|
@ -86,7 +86,6 @@ func resourcePostgreSQLDatabase() *schema.Resource {
|
||||||
dbConnLimitAttr: {
|
dbConnLimitAttr: {
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Computed: true,
|
|
||||||
Default: -1,
|
Default: -1,
|
||||||
Description: "How many concurrent connections can be made to this database",
|
Description: "How many concurrent connections can be made to this database",
|
||||||
ValidateFunc: validateConnLimit,
|
ValidateFunc: validateConnLimit,
|
||||||
|
|
|
@ -78,7 +78,6 @@ func resourcePostgreSQLRole() *schema.Resource {
|
||||||
Type: schema.TypeInt,
|
Type: schema.TypeInt,
|
||||||
Optional: true,
|
Optional: true,
|
||||||
Default: -1,
|
Default: -1,
|
||||||
Computed: true,
|
|
||||||
Description: "How many concurrent connections can be made with this role",
|
Description: "How many concurrent connections can be made with this role",
|
||||||
ValidateFunc: validateConnLimit,
|
ValidateFunc: validateConnLimit,
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue