Skip to content

Commit

Permalink
google_compute_instance_group: Correct error message for invalid inst…
Browse files Browse the repository at this point in the history
…ances
  • Loading branch information
billf committed Mar 18, 2016
1 parent 111a59c commit 86bf978
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 86bf978

Please sign in to comment.