From 384b58d9a01d2a1835627edfeaad3f359567b172 Mon Sep 17 00:00:00 2001 From: Akshay Karle <1443108+akshaykarle@users.noreply.github.com> Date: Thu, 10 May 2018 15:04:15 -0300 Subject: [PATCH] remove the default cluster disk size of 2gb This default value changes by the size of the cluster as specified in the api docs- ``` Each instance size has its own default value. If you set a value below the instance default, Atlas replaces it with the default value. ``` more info here: https://docs.atlas.mongodb.com/reference/api/clusters-create-one/ --- mongodbatlas/cluster.go | 1 - 1 file changed, 1 deletion(-) diff --git a/mongodbatlas/cluster.go b/mongodbatlas/cluster.go index 6f5c9da2..0e7d1893 100644 --- a/mongodbatlas/cluster.go +++ b/mongodbatlas/cluster.go @@ -66,7 +66,6 @@ func resourceCluster() *schema.Resource { "disk_size_gb": &schema.Schema{ Type: schema.TypeFloat, Optional: true, - Default: 2, }, "replication_factor": &schema.Schema{ Type: schema.TypeInt,