Skip to content

Commit

Permalink
Bump Composer timeouts (#5223)
Browse files Browse the repository at this point in the history
Signed-off-by: Modular Magician <[email protected]>
  • Loading branch information
modular-magician authored and emilymye committed Dec 18, 2019
1 parent d846a33 commit b467350
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions google/resource_composer_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,9 +65,9 @@ func resourceComposerEnvironment() *schema.Resource {

Timeouts: &schema.ResourceTimeout{
// Composer takes <= 1 hr for create/update.
Create: schema.DefaultTimeout(60 * time.Minute),
Update: schema.DefaultTimeout(60 * time.Minute),
Delete: schema.DefaultTimeout(15 * time.Minute),
Create: schema.DefaultTimeout(120 * time.Minute),
Update: schema.DefaultTimeout(120 * time.Minute),
Delete: schema.DefaultTimeout(30 * time.Minute),
},

Schema: map[string]*schema.Schema{
Expand Down

0 comments on commit b467350

Please sign in to comment.