Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Increase EdgeCacheKeyset timeout #15024

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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