Skip to content

Commit 36f06d2

Browse files
Bump timeout on google_network_services_edge_cache_origin to 60m (#5252) (#3674)
Signed-off-by: Modular Magician <[email protected]>
1 parent f9fb0e3 commit 36f06d2

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

.changelog/5252.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
networkservices: boosted the default timeout for google_network_services_edge_cache_origin from 30m to 60m
3+
```

google-beta/resource_dataproc_cluster_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,9 @@ import (
1313
"github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource"
1414
"github.com/hashicorp/terraform-plugin-sdk/v2/terraform"
1515

16-
dataproc "google.golang.org/api/dataproc/v1beta2"
1716
"google.golang.org/api/googleapi"
17+
18+
dataproc "google.golang.org/api/dataproc/v1beta2"
1819
)
1920

2021
func TestDataprocExtractInitTimeout(t *testing.T) {

google-beta/resource_network_services_edge_cache_origin.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ func resourceNetworkServicesEdgeCacheOrigin() *schema.Resource {
3838
},
3939

4040
Timeouts: &schema.ResourceTimeout{
41-
Create: schema.DefaultTimeout(30 * time.Minute),
42-
Update: schema.DefaultTimeout(30 * time.Minute),
43-
Delete: schema.DefaultTimeout(30 * time.Minute),
41+
Create: schema.DefaultTimeout(60 * time.Minute),
42+
Update: schema.DefaultTimeout(60 * time.Minute),
43+
Delete: schema.DefaultTimeout(60 * time.Minute),
4444
},
4545

4646
Schema: map[string]*schema.Schema{

website/docs/r/network_services_edge_cache_origin.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ In addition to the arguments listed above, the following computed attributes are
200200
This resource provides the following
201201
[Timeouts](/docs/configuration/resources.html#timeouts) configuration options:
202202

203-
- `create` - Default is 30 minutes.
204-
- `update` - Default is 30 minutes.
205-
- `delete` - Default is 30 minutes.
203+
- `create` - Default is 60 minutes.
204+
- `update` - Default is 60 minutes.
205+
- `delete` - Default is 60 minutes.
206206

207207
## Import
208208

0 commit comments

Comments
 (0)