Skip to content

Commit

Permalink
Bump Redis timeouts based on test failures (#3316)
Browse files Browse the repository at this point in the history
<!-- This change is generated by MagicModules. -->
/cc @rileykarson
  • Loading branch information
modular-magician authored and rileykarson committed Mar 25, 2019
1 parent 756e254 commit 2a56203
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions google/resource_redis_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ func resourceRedisInstance() *schema.Resource {
},

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

Schema: map[string]*schema.Schema{
Expand Down
6 changes: 3 additions & 3 deletions website/docs/r/redis_instance.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -187,9 +187,9 @@ In addition to the arguments listed above, the following computed attributes are
This resource provides the following
[Timeouts](/docs/configuration/resources.html#timeouts) configuration options:

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

## Import

Expand Down

0 comments on commit 2a56203

Please sign in to comment.