aws_db_instance: fix missing format arg

This commit is contained in:
Alex Philipp 2015-07-09 14:28:50 -05:00
parent 0dc0cff14d
commit 3cb2a3b0b8
1 changed files with 1 additions and 1 deletions

View File

@ -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
},