Skip to content

Commit

Permalink
Fixed error when you sending to scaling a kubernetes cluster (#115)
Browse files Browse the repository at this point in the history
Signed-off-by: Alejandro J. Nuñez Madrazo <alejandrojnm@gmail.com>
  • Loading branch information
alejandrojnm committed Dec 11, 2021
1 parent 4e25738 commit 1f3689a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion civo/resource_kubernetes_cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ func resourceKubernetesClusterUpdate(d *schema.ResourceData, m interface{}) erro
}

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

0 comments on commit 1f3689a

Please sign in to comment.