From 3cb2a3b0b8add7e80db14b0d9874f295c7456653 Mon Sep 17 00:00:00 2001 From: Alex Philipp Date: Thu, 9 Jul 2015 14:28:50 -0500 Subject: [PATCH] aws_db_instance: fix missing format arg --- builtin/providers/aws/resource_aws_db_instance.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_db_instance.go b/builtin/providers/aws/resource_aws_db_instance.go index cd394216f..47a98b73d 100644 --- a/builtin/providers/aws/resource_aws_db_instance.go +++ b/builtin/providers/aws/resource_aws_db_instance.go @@ -90,7 +90,7 @@ func resourceAwsDbInstance() *schema.Resource { } if regexp.MustCompile(`-$`).MatchString(value) { errors = append(errors, fmt.Errorf( - "%q cannot end with a hyphen")) + "%q cannot end with a hyphen", k)) } return },