Skip to content

Commit

Permalink
Increase EdgeCacheKeyset timeout (#8233) (#15024)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored Jun 30, 2023
1 parent b616679 commit dc32b9e
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .changelog/8233.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:bug
networkservices: increased default timeout for `google_network_services_edge_cache_keyset` to 90m
```
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ func ResourceNetworkServicesEdgeCacheKeyset() *schema.Resource {
},

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

Schema: map[string]*schema.Schema{
Expand Down
11 changes: 8 additions & 3 deletions website/docs/r/network_services_edge_cache_keyset.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ description: |-
EdgeCacheKeyset represents a collection of public keys used for validating signed requests.


To get more information about EdgeCacheKeyset, see:

* [API documentation](https://cloud.google.com/media-cdn/docs/reference/rest/v1/projects.locations.edgeCacheKeysets)
* How-to Guides
* [Create keysets](https://cloud.google.com/media-cdn/docs/create-keyset)

~> **Warning:** All arguments including the following potentially sensitive
values will be stored in the raw state as plain text: `public_key.public_key.value`.
Expand Down Expand Up @@ -172,9 +177,9 @@ 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 60 minutes.
- `update` - Default is 60 minutes.
- `delete` - Default is 60 minutes.
- `create` - Default is 90 minutes.
- `update` - Default is 90 minutes.
- `delete` - Default is 90 minutes.

## Import

Expand Down

0 comments on commit dc32b9e

Please sign in to comment.