Skip to content

Commit

Permalink
Bump sql_database_instance create timeout from 30 to 40 minutes (#7118)
Browse files Browse the repository at this point in the history
  • Loading branch information
roaks3 authored Jan 13, 2023
1 parent cb1b7d7 commit d813c01
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ func resourceSqlDatabaseInstance() *schema.Resource {
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(30 * time.Minute),
Create: schema.DefaultTimeout(40 * time.Minute),
Update: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -501,7 +501,7 @@ performing filtering in a Terraform config.
`google_sql_database_instance` provides the following
[Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options:

- `create` - Default is 30 minutes.
- `create` - Default is 40 minutes.
- `update` - Default is 30 minutes.
- `delete` - Default is 30 minutes.

Expand Down

0 comments on commit d813c01

Please sign in to comment.