Skip to content

Commit 1b2822f

Browse files
Increase timeout on google_dataproc_metastore_service to 75m (from 60m) (#12824) (#9102)
[upstream:fde8ff16bbd30b654f1e10f2bba74d3b902fc5cc] Signed-off-by: Modular Magician <[email protected]>
1 parent b4577fd commit 1b2822f

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

.changelog/12824.txt

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
```release-note:bug
2+
metastore: increased timeout on google_dataproc_metastore_service operations to 75m from 60m. This will expose server-returned reasons for operation failure instead of masking them with a Terraform timeout.
3+
```

google-beta/services/dataprocmetastore/resource_dataproc_metastore_service.go

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

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

5353
CustomizeDiff: customdiff.All(

website/docs/r/dataproc_metastore_service.html.markdown

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

740-
- `create` - Default is 60 minutes.
741-
- `update` - Default is 60 minutes.
742-
- `delete` - Default is 60 minutes.
740+
- `create` - Default is 75 minutes.
741+
- `update` - Default is 75 minutes.
742+
- `delete` - Default is 75 minutes.
743743

744744
## Import
745745

0 commit comments

Comments
 (0)