Skip to content

Commit 575c722

Browse files
Increase AlloyDB cluster timeout (#12455) (#8820)
[upstream:6f75b8b6bcf6fd54daa96554f609d97fa9c810e9] Signed-off-by: Modular Magician <[email protected]>
1 parent f4e2705 commit 575c722

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

Diff for: .changelog/12455.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:enhancement
2+
alloydb: increased default timeout on `google_alloydb_cluster` to 120m from 30m
3+
```

Diff for: google-beta/services/alloydb/resource_alloydb_cluster.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ func ResourceAlloydbCluster() *schema.Resource {
4545
},
4646

4747
Timeouts: &schema.ResourceTimeout{
48-
Create: schema.DefaultTimeout(30 * time.Minute),
49-
Update: schema.DefaultTimeout(30 * time.Minute),
50-
Delete: schema.DefaultTimeout(30 * time.Minute),
48+
Create: schema.DefaultTimeout(120 * time.Minute),
49+
Update: schema.DefaultTimeout(120 * time.Minute),
50+
Delete: schema.DefaultTimeout(120 * time.Minute),
5151
},
5252

5353
CustomizeDiff: customdiff.All(

Diff for: website/docs/r/alloydb_cluster.html.markdown

+3-3
Original file line numberDiff line numberDiff line change
@@ -729,9 +729,9 @@ In addition to the arguments listed above, the following computed attributes are
729729
This resource provides the following
730730
[Timeouts](https://developer.hashicorp.com/terraform/plugin/sdkv2/resources/retries-and-customizable-timeouts) configuration options:
731731

732-
- `create` - Default is 30 minutes.
733-
- `update` - Default is 30 minutes.
734-
- `delete` - Default is 30 minutes.
732+
- `create` - Default is 120 minutes.
733+
- `update` - Default is 120 minutes.
734+
- `delete` - Default is 120 minutes.
735735

736736
## Import
737737

0 commit comments

Comments
 (0)