Ensure aws_rds_cluster has storage_encrypted set to false by default

This commit is contained in:
Brandon Siegel 2016-03-08 17:28:32 -05:00
parent b3864db462
commit 0085bf6ae8
1 changed files with 2 additions and 0 deletions

View File

@ -29,6 +29,8 @@ func TestAccAWSRDSCluster_basic(t *testing.T) {
Config: config, Config: config,
Check: resource.ComposeTestCheckFunc( Check: resource.ComposeTestCheckFunc(
testAccCheckAWSClusterExists("aws_rds_cluster.default", &v), testAccCheckAWSClusterExists("aws_rds_cluster.default", &v),
resource.TestCheckResourceAttr(
"aws_rds_cluster.default", "storage_encrypted", "false"),
), ),
}, },
}, },