Skip to content

Commit

Permalink
Increase create timeout to 20mins (#11769) (#19551)
Browse files Browse the repository at this point in the history
[upstream:8503bedde581914ed9370b190dc02e4a197d1a16]

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Sep 20, 2024
1 parent 54caff3 commit f4eb1cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions .changelog/11769.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
workbench: increased create timeout to 20 minutes for `google_workbench_instance`
```
2 changes: 1 addition & 1 deletion google/services/workbench/resource_workbench_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ func ResourceWorkbenchInstance() *schema.Resource {
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(10 * time.Minute),
Create: schema.DefaultTimeout(20 * time.Minute),
Update: schema.DefaultTimeout(20 * time.Minute),
Delete: schema.DefaultTimeout(20 * time.Minute),
},
Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/workbench_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -578,7 +578,7 @@ In addition to the arguments listed above, the following computed attributes are
This resource provides the following
[Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options:

- `create` - Default is 10 minutes.
- `create` - Default is 20 minutes.
- `update` - Default is 20 minutes.
- `delete` - Default is 20 minutes.

Expand Down

0 comments on commit f4eb1cb

Please sign in to comment.