Ensure aws_rds_cluster has storage_encrypted set to false by default
This commit is contained in:
parent
b3864db462
commit
0085bf6ae8
|
@ -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"),
|
||||||
),
|
),
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue