provider/aws: Fix typo in error message (#6518)

pull/6557/head
KOJIMA Kazunori 10 years ago committed by Clint
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…
Cancel
Save