aws_db_instance: fix missing format arg
This commit is contained in:
parent
0dc0cff14d
commit
3cb2a3b0b8
|
@ -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
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue