Skip to content

Commit

Permalink
Bump timeout on google_network_services_edge_cache_origin to 60m (#5252
Browse files Browse the repository at this point in the history
…) (#10182)

Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Sep 28, 2021
1 parent b5e0809 commit 8a1055e
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .changelog/5252.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
networkservices: boosted the default timeout for google_network_services_edge_cache_origin from 30m to 60m
```
6 changes: 3 additions & 3 deletions google/resource_network_services_edge_cache_origin.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ func resourceNetworkServicesEdgeCacheOrigin() *schema.Resource {
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(30 * time.Minute),
Update: schema.DefaultTimeout(30 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
Create: schema.DefaultTimeout(60 * time.Minute),
Update: schema.DefaultTimeout(60 * time.Minute),
Delete: schema.DefaultTimeout(60 * time.Minute),
},

Schema: map[string]*schema.Schema{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ In addition to the arguments listed above, the following computed attributes are
This resource provides the following
[Timeouts](/docs/configuration/resources.html#timeouts) configuration options:

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

## Import

Expand Down

0 comments on commit 8a1055e

Please sign in to comment.