Skip to content

Commit

Permalink
chore: cleanup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnsonaj committed Sep 5, 2024
1 parent cf73e9a commit 31cc737
Showing 1 changed file with 0 additions and 29 deletions.
29 changes: 0 additions & 29 deletions internal/service/docdbelastic/cluster_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -356,35 +356,6 @@ resource "aws_docdbelastic_cluster" "test" {
`, rName, shardCapacity, backupRetentionPeriod))
}

func testAccClusterConfig_update2(rName string, backupRetentionPeriod int) string {
return acctest.ConfigCompose(
testAccClusterBaseConfig(rName),
fmt.Sprintf(`
resource "aws_docdbelastic_cluster" "test" {
name = %[1]q
shard_count = 1
shard_capacity = 4
admin_user_name = "testuser"
admin_user_password = "testpassword"
auth_type = "PLAIN_TEXT"
backup_retention_period = %[2]d
preferred_maintenance_window = "Tue:04:00-Tue:04:30"
vpc_security_group_ids = [
aws_security_group.test.id
]
subnet_ids = [
aws_subnet.test[0].id,
aws_subnet.test[1].id
]
}
`, rName, backupRetentionPeriod))
}

func testAccClusterConfig_tags1(rName, key1, value1 string) string {
return acctest.ConfigCompose(
testAccClusterBaseConfig(rName),
Expand Down

0 comments on commit 31cc737

Please sign in to comment.