Skip to content

Commit

Permalink
Update composer timeouts (#2354)
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 6, 2018
1 parent 66b8853 commit 8d64a91
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 @@ -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 8d64a91

Please sign in to comment.