Skip to content

Commit

Permalink
Increased timeout to 20 minutes (default)
Browse files Browse the repository at this point in the history
  • Loading branch information
melinath committed Apr 5, 2024
1 parent a2121fb commit c796204
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,9 @@ func ResourceComputeSecurityPolicy() *schema.Resource {
),

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(8 * time.Minute),
Update: schema.DefaultTimeout(8 * time.Minute),
Delete: schema.DefaultTimeout(8 * time.Minute),
Create: schema.DefaultTimeout(20 * time.Minute),
Update: schema.DefaultTimeout(20 * time.Minute),
Delete: schema.DefaultTimeout(20 * time.Minute),
},

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

0 comments on commit c796204

Please sign in to comment.