Skip to content

Commit 053bb8b

Browse files
Increase EdgeCacheKeyset timeout (#8233) (#5839)
Signed-off-by: Modular Magician <[email protected]>
1 parent c734b8b commit 053bb8b

File tree

3 files changed

+14
-6
lines changed

3 files changed

+14
-6
lines changed

.changelog/8233.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
networkservices: increased default timeout for `google_network_services_edge_cache_keyset` to 90m
3+
```

google-beta/services/networkservices/resource_network_services_edge_cache_keyset.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ func ResourceNetworkServicesEdgeCacheKeyset() *schema.Resource {
4242
},
4343

4444
Timeouts: &schema.ResourceTimeout{
45-
Create: schema.DefaultTimeout(60 * time.Minute),
46-
Update: schema.DefaultTimeout(60 * time.Minute),
47-
Delete: schema.DefaultTimeout(60 * time.Minute),
45+
Create: schema.DefaultTimeout(90 * time.Minute),
46+
Update: schema.DefaultTimeout(90 * time.Minute),
47+
Delete: schema.DefaultTimeout(90 * time.Minute),
4848
},
4949

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

website/docs/r/network_services_edge_cache_keyset.html.markdown

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,11 @@ description: |-
2222
EdgeCacheKeyset represents a collection of public keys used for validating signed requests.
2323

2424

25+
To get more information about EdgeCacheKeyset, see:
26+
27+
* [API documentation](https://cloud.google.com/media-cdn/docs/reference/rest/v1/projects.locations.edgeCacheKeysets)
28+
* How-to Guides
29+
* [Create keysets](https://cloud.google.com/media-cdn/docs/create-keyset)
2530

2631
~> **Warning:** All arguments including the following potentially sensitive
2732
values will be stored in the raw state as plain text: `public_key.public_key.value`.
@@ -172,9 +177,9 @@ In addition to the arguments listed above, the following computed attributes are
172177
This resource provides the following
173178
[Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options:
174179

175-
- `create` - Default is 60 minutes.
176-
- `update` - Default is 60 minutes.
177-
- `delete` - Default is 60 minutes.
180+
- `create` - Default is 90 minutes.
181+
- `update` - Default is 90 minutes.
182+
- `delete` - Default is 90 minutes.
178183

179184
## Import
180185

0 commit comments

Comments
 (0)