Skip to content

Commit

Permalink
Increase redis timeouts (#2351)
Browse files Browse the repository at this point in the history
<!-- This change is generated by MagicModules. -->
/cc @danawillow
  • Loading branch information
modular-magician authored and nat-henderson committed Dec 5, 2018
1 parent 0ae0a27 commit 5d57c70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions google/resource_redis_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@ func resourceRedisInstance() *schema.Resource {

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(360 * time.Second),
Update: schema.DefaultTimeout(240 * time.Second),
Delete: schema.DefaultTimeout(240 * time.Second),
Update: schema.DefaultTimeout(360 * time.Second),
Delete: schema.DefaultTimeout(360 * time.Second),
},

Schema: map[string]*schema.Schema{
Expand Down
4 changes: 2 additions & 2 deletions website/docs/r/redis_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -186,8 +186,8 @@ This resource provides the following
[Timeouts](/docs/configuration/resources.html#timeouts) configuration options:

- `create` - Default is 6 minutes.
- `update` - Default is 4 minutes.
- `delete` - Default is 4 minutes.
- `update` - Default is 6 minutes.
- `delete` - Default is 6 minutes.

## Import

Expand Down

0 comments on commit 5d57c70

Please sign in to comment.