Skip to content

Commit

Permalink
Fix linter issue
Browse files Browse the repository at this point in the history
  • Loading branch information
bill-rich committed Jul 22, 2021
1 parent 60d9036 commit 4407fb1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion aws/resource_aws_db_instance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -3372,10 +3372,14 @@ resource "aws_db_instance" "bar" {

func testAccAWSDBInstanceConfig_MajorVersionOnly(engine, engineVersion string) string {
return composeConfig(testAccAWSDBInstanceConfig_orderableClassMysql(), fmt.Sprintf(`
locals {
engine = %[1]q
}
resource "aws_db_instance" "test" {
allocated_storage = 10
backup_retention_period = 0
engine = %[1]q
engine = local.engine
engine_version = %[2]q
instance_class = "db.r4.large"
name = "baz"
Expand Down

0 comments on commit 4407fb1

Please sign in to comment.