Skip to content

Commit 98c5642

Browse files
Increased timeouts for google_network_services_edge_cache_keyset to 60m (#7716) (#14314)
Signed-off-by: Modular Magician <[email protected]>
1 parent 21e4228 commit 98c5642

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.changelog/7716.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
networkservices: increased default timeouts for `google_network_services_edge_cache_keyset` to 60m (from 30m)
3+
```

google/resource_network_services_edge_cache_keyset.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ func ResourceNetworkServicesEdgeCacheKeyset() *schema.Resource {
3636
},
3737

3838
Timeouts: &schema.ResourceTimeout{
39-
Create: schema.DefaultTimeout(30 * time.Minute),
40-
Update: schema.DefaultTimeout(30 * time.Minute),
41-
Delete: schema.DefaultTimeout(30 * time.Minute),
39+
Create: schema.DefaultTimeout(60 * time.Minute),
40+
Update: schema.DefaultTimeout(60 * time.Minute),
41+
Delete: schema.DefaultTimeout(60 * time.Minute),
4242
},
4343

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

website/docs/r/network_services_edge_cache_keyset.html.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -172,9 +172,9 @@ In addition to the arguments listed above, the following computed attributes are
172172
This resource provides the following
173173
[Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options:
174174

175-
- `create` - Default is 30 minutes.
176-
- `update` - Default is 30 minutes.
177-
- `delete` - Default is 30 minutes.
175+
- `create` - Default is 60 minutes.
176+
- `update` - Default is 60 minutes.
177+
- `delete` - Default is 60 minutes.
178178

179179
## Import
180180

0 commit comments

Comments
 (0)