Skip to content

Commit b8fed4b

Browse files
provider_backup_enabled deprecated to cloud_backup (#1036)
* Update CHANGELOG.md * Chore(deps): Bump golangci/golangci-lint-action from 3.3.1 to 3.4.0 (#1026) Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 3.3.1 to 3.4.0. - [Release notes](https://github.com/golangci/golangci-lint-action/releases) - [Commits](golangci/golangci-lint-action@v3.3.1...v3.4.0) --- updated-dependencies: - dependency-name: golangci/golangci-lint-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> * provider_backup_enabled deprecated to cloud_backup * replace with cloud_backup parameter --------- Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent d1b66b4 commit b8fed4b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/Atlas_Database_Users/atlas_cluster.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ resource "mongodbatlas_cluster" "cluster" {
1313
}
1414
}
1515
# Provider Settings "block"
16-
provider_backup_enabled = true
16+
cloud_backup = true
1717
auto_scaling_disk_gb_enabled = true
1818
provider_name = "AWS"
1919
disk_size_gb = 10

examples/MongoDB-Atlas-AWS-VPC-Peering/atlas.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ resource "mongodbatlas_cluster" "cluster-atlas" {
2121
read_only_nodes = 0
2222
}
2323
}
24-
provider_backup_enabled = true
24+
cloud_backup = true
2525
auto_scaling_disk_gb_enabled = true
2626
mongo_db_major_version = "5.0"
2727

examples/MongoDB-Atlas-GCP-VPC-Peering/cluster.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ resource "mongodbatlas_cluster" "cluster" {
1717
key = "environment"
1818
value = "prod"
1919
}
20-
provider_backup_enabled = true
20+
cloud_backup = true
2121
auto_scaling_disk_gb_enabled = true
2222
mongo_db_major_version = "4.4"
2323
auto_scaling_compute_enabled = true

0 commit comments

Comments
 (0)