Skip to content

Commit e2e108d

Browse files
Bump sql_database_instance create timeout from 30 to 40 minutes (#7118) (#13481)
Signed-off-by: Modular Magician <[email protected]> Signed-off-by: Modular Magician <[email protected]>
1 parent c6e1061 commit e2e108d

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.changelog/7118.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
sql: changed the default create timeout of `google_sql_database_instance` to 40m from 30m
3+
```

google/resource_sql_database_instance.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ func resourceSqlDatabaseInstance() *schema.Resource {
102102
},
103103

104104
Timeouts: &schema.ResourceTimeout{
105-
Create: schema.DefaultTimeout(30 * time.Minute),
105+
Create: schema.DefaultTimeout(40 * time.Minute),
106106
Update: schema.DefaultTimeout(30 * time.Minute),
107107
Delete: schema.DefaultTimeout(30 * time.Minute),
108108
},

website/docs/r/sql_database_instance.html.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -501,7 +501,7 @@ performing filtering in a Terraform config.
501501
`google_sql_database_instance` provides the following
502502
[Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options:
503503

504-
- `create` - Default is 30 minutes.
504+
- `create` - Default is 40 minutes.
505505
- `update` - Default is 30 minutes.
506506
- `delete` - Default is 30 minutes.
507507

0 commit comments

Comments
 (0)