Skip to content

Commit

Permalink
Pull request #1032: add mongodb create timeout
Browse files Browse the repository at this point in the history
Merge in CLOUD/terraform-provider-yandex-mirror from add-create-timeout-to-mongodb to master

Squashed commit of the following:

commit 0823db806a0cc8a6167b8252e8b1a12e92627ce9
Author: denchick <[email protected]>
Date:   Tue Nov 14 10:29:05 2023 +0500

    update CHANGELOG

commit 6dd12dcfaf3c372d72ccc46563e6125f48bd16ec
Author: denchick <[email protected]>
Date:   Sun Nov 12 18:43:45 2023 +0500

    add mongodb create timeout
  • Loading branch information
Denchick committed Nov 20, 2023
1 parent 00226c6 commit 8b971b3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
7 changes: 2 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
FEATURES:
* **New Data Source:** `yandex_mdb_opensearch_cluster`
* **New Resource:** `yandex_mdb_opensearch_cluster`

FEATURES:
* yandex_ydb_database: added the ability to change networks
* serverless: `log_group` trigger is deprecated. Use `logging` trigger instead.
* mongodb: add create cluster timeout

ENHANCEMENTS:
* managed-kubernetes: support update of `master.master_locations` section for `yandex_kubernetes_cluster`
Expand All @@ -13,9 +13,6 @@ BUG FIXES:
* yandex_ydb_database: Add additional wait duration after database was created
* yandex_ydb_topic: Fix consumer type in tf scheme

FEATURES:
* serverless: `log_group` trigger is deprecated. Use `logging` trigger instead.

## 0.102.0 (November 8, 2023)

FEATURES:
Expand Down
1 change: 1 addition & 0 deletions yandex/resource_yandex_mdb_mongodb_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ func resourceYandexMDBMongodbCluster() *schema.Resource {
},

Timeouts: &schema.ResourceTimeout{
Create: schema.DefaultTimeout(30 * time.Minute),
Update: schema.DefaultTimeout(60 * time.Minute),
Default: schema.DefaultTimeout(30 * time.Minute),
},
Expand Down

0 comments on commit 8b971b3

Please sign in to comment.