From d5841b505731183f4e6a117377a630d994f5aaf9 Mon Sep 17 00:00:00 2001 From: Melissa Plunkett Date: Fri, 7 Feb 2020 11:15:53 -0600 Subject: [PATCH] Update atlas-cluster.tf Continuous is not longer supported on AWS for new clusters so changing the variable for backup to CPS. Our updated doc on this will come out with the next version but wanted to make sure your excellent example was correct. --- atlas-cluster.tf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/atlas-cluster.tf b/atlas-cluster.tf index 7b42161..57cbad9 100644 --- a/atlas-cluster.tf +++ b/atlas-cluster.tf @@ -13,7 +13,8 @@ resource "mongodbatlas_cluster" "cluster-atlas" { name = "cluster-atlas" num_shards = 1 replication_factor = 3 - backup_enabled = true + backup_enabled = false + provider_backup_enabled = true auto_scaling_disk_gb_enabled = true mongo_db_major_version = "4.0"