Skip to content

Commit

Permalink
bump composer timeouts (#2863)
Browse files Browse the repository at this point in the history
Merged PR #2863.
  • Loading branch information
emilymye authored and modular-magician committed Dec 18, 2019
1 parent 8c9a42b commit 64ba08e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,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 64ba08e

Please sign in to comment.