Skip to content

Commit

Permalink
Add "Accepted" to pending state list (#13925)
Browse files Browse the repository at this point in the history
Fixes #13924
  • Loading branch information
stuartleeks authored Oct 27, 2021
1 parent af82ce7 commit 94d0e5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/services/cognitive/cognitive_account_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ func resourceCognitiveAccountCreate(d *pluginsdk.ResourceData, meta interface{})
}

stateConf := &pluginsdk.StateChangeConf{
Pending: []string{"Creating"},
Pending: []string{"Accepted", "Creating"},
Target: []string{"Succeeded"},
Refresh: cognitiveAccountStateRefreshFunc(ctx, client, id),
MinTimeout: 15 * time.Second,
Expand Down

0 comments on commit 94d0e5d

Please sign in to comment.