Skip to content

Commit

Permalink
Increase timeout to 5 min (#77)
Browse files Browse the repository at this point in the history
* increase timeout to 5 min

Co-authored-by: Matt Trachier <[email protected]>
  • Loading branch information
matttrach and Matt Trachier authored Mar 1, 2021
1 parent 9354f29 commit 9f5bb2f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k8s/resource_k8s_manifest.go
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,9 @@ func resourceK8sManifest() *schema.Resource {
},
},
Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(3 * time.Minute),
Update: schema.DefaultTimeout(3 * time.Minute),
Delete: schema.DefaultTimeout(3 * time.Minute),
Create: schema.DefaultTimeout(5 * time.Minute),
Update: schema.DefaultTimeout(5 * time.Minute),
Delete: schema.DefaultTimeout(5 * time.Minute),
},
}
}
Expand Down

0 comments on commit 9f5bb2f

Please sign in to comment.