Merge pull request #13394 from hashicorp/b-aws-redshift-fixes

provider/aws: Fix some Acc tests by skipping final snaphot in Redshift
This commit is contained in:
Clint 2017-04-05 15:08:21 -05:00 committed by GitHub
commit 092fe7ded6
2 changed files with 2 additions and 0 deletions

View File

@ -487,6 +487,7 @@ resource "aws_redshift_cluster" "test_cluster" {
master_password = "T3stPass"
node_type = "dc1.large"
cluster_type = "single-node"
skip_final_snapshot = true
}`
var testAccKinesisFirehoseDeliveryStreamConfig_RedshiftBasic = testAccKinesisFirehoseDeliveryStreamBaseRedshiftConfig + `

View File

@ -703,6 +703,7 @@ func testAccAWSRedshiftClusterConfig_loggingDisabled(rInt int) string {
automated_snapshot_retention_period = 0
allow_version_upgrade = false
enable_logging = false
skip_final_snapshot = true
}`, rInt)
}