Skip to content

Commit

Permalink
Add missing instance states (#337)
Browse files Browse the repository at this point in the history
  • Loading branch information
uzaxirr authored Sep 2, 2024
1 parent b834b4d commit 91f7bc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion civo/instances/resource_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -417,7 +417,7 @@ func resourceInstanceUpdate(ctx context.Context, d *schema.ResourceData, m inter
}

createStateConf := &resource.StateChangeConf{
Pending: []string{"BUILDING"},
Pending: []string{"BUILDING", "REBOOTING"},
Target: []string{"ACTIVE"},
Refresh: func() (interface{}, string, error) {
resp, err := apiClient.GetInstance(d.Id())
Expand Down

0 comments on commit 91f7bc4

Please sign in to comment.