provider/aws: Fix typo in error message (#6518)
This commit is contained in:
parent
f1031707f9
commit
2476dcbcae
|
@ -71,7 +71,7 @@ func resourceAwsElasticacheParameterGroupCreate(d *schema.ResourceData, meta int
|
|||
log.Printf("[DEBUG] Create Cache Parameter Group: %#v", createOpts)
|
||||
_, err := conn.CreateCacheParameterGroup(&createOpts)
|
||||
if err != nil {
|
||||
return fmt.Errorf("Error creating DB Parameter Group: %s", err)
|
||||
return fmt.Errorf("Error creating Cache Parameter Group: %s", err)
|
||||
}
|
||||
|
||||
d.Partial(true)
|
||||
|
|
Loading…
Reference in New Issue