Skip to content

Commit

Permalink
Update composer timeouts (#636)
Browse files Browse the repository at this point in the history
Merged PR #636.
  • Loading branch information
danawillow authored and modular-magician committed Oct 29, 2018
1 parent 6a9b149 commit e53c2ba
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/terraform
2 changes: 1 addition & 1 deletion build/terraform-beta
6 changes: 3 additions & 3 deletions provider/terraform/resources/resource_composer_environment.go
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ func resourceComposerEnvironment() *schema.Resource {

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

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

0 comments on commit e53c2ba

Please sign in to comment.