Skip to content

Commit

Permalink
Increased google_compute_security_policy timeouts to 20 minutes (defa…
Browse files Browse the repository at this point in the history
…ult) (hashicorp#10385)

[upstream:269a04f051a4ad1b9ec610e81a8996dd14e0cfaa]

Signed-off-by: Modular Magician <magic-modules@google.com>
  • Loading branch information
modular-magician committed Apr 8, 2024
1 parent a9a1b1d commit 37f93c8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .changelog/10385.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:enhancement
compute: increased `google_compute_security_policy` timeouts from 8 minutes to 20 minutes
```
6 changes: 3 additions & 3 deletions google/services/compute/resource_compute_security_policy.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,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 37f93c8

Please sign in to comment.