Skip to content

Commit d37b4ee

Browse files
committed
fix: test
1 parent 2281acc commit d37b4ee

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/resources/instance.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ The instance resource.
2626
### Optional
2727

2828
- `external_link` (String) The external console URL managing this instance (e.g. AWS RDS console, your in-house DB instance console)
29-
- `maximum_connections` (Number) The maximum number of connections. The default value is 10.
29+
- `maximum_connections` (Number) The maximum number of connections.
3030
- `sync_interval` (Number) How often the instance is synced in seconds. Default 0, means never sync.
3131

3232
### Read-Only

provider/resource_instance.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,8 +99,8 @@ func resourceInstance() *schema.Resource {
9999
"maximum_connections": {
100100
Type: schema.TypeInt,
101101
Optional: true,
102-
Default: 10,
103-
Description: "The maximum number of connections. The default value is 10.",
102+
Default: 0,
103+
Description: "The maximum number of connections.",
104104
},
105105
"data_sources": {
106106
Type: schema.TypeList,

0 commit comments

Comments
 (0)