Merge pull request #5715 from uber/b-google_compute_instance_group-error

Fix error message arguments in google_compute_instance_group
This commit is contained in:
Lars Wander 2016-03-18 12:48:15 -04:00
commit 85bd151370
1 changed files with 1 additions and 1 deletions

View File

@ -225,7 +225,7 @@ func resourceComputeInstanceGroupUpdate(d *schema.ResourceData, meta interface{}
return fmt.Errorf("Error invalid instance URLs: %v", from)
}
if !validInstanceURLs(to) {
return fmt.Errorf("Error invalid instance URLs: %v", from)
return fmt.Errorf("Error invalid instance URLs: %v", to)
}
add, remove := calcAddRemove(from, to)