Skip to content

Commit 281d6a4

Browse files
Increase BeyondCorp AppGateway timeout from 20m to 40m (#13970) (#22805)
[upstream:6ee3dfc363428e45484ab38899a80896429dc18a] Signed-off-by: Modular Magician <[email protected]>
1 parent b3ec65a commit 281d6a4

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.changelog/13970.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
beyondcorp: increased default timeouts on `google_beyondcorp_app_gateway ` operations from 20m to 40m
3+
```

google/services/beyondcorp/resource_beyondcorp_app_gateway.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ func ResourceBeyondcorpAppGateway() *schema.Resource {
4747
},
4848

4949
Timeouts: &schema.ResourceTimeout{
50-
Create: schema.DefaultTimeout(20 * time.Minute),
51-
Update: schema.DefaultTimeout(20 * time.Minute),
52-
Delete: schema.DefaultTimeout(20 * time.Minute),
50+
Create: schema.DefaultTimeout(40 * time.Minute),
51+
Update: schema.DefaultTimeout(40 * time.Minute),
52+
Delete: schema.DefaultTimeout(40 * time.Minute),
5353
},
5454

5555
SchemaVersion: 1,

website/docs/r/beyondcorp_app_gateway.html.markdown

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ In addition to the arguments listed above, the following computed attributes are
153153
This resource provides the following
154154
[Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options:
155155

156-
- `create` - Default is 20 minutes.
157-
- `update` - Default is 20 minutes.
158-
- `delete` - Default is 20 minutes.
156+
- `create` - Default is 40 minutes.
157+
- `update` - Default is 40 minutes.
158+
- `delete` - Default is 40 minutes.
159159

160160
## Import
161161

0 commit comments

Comments
 (0)