provider/aws: Add snapshotting to the list of pending state for (#10965)

elasticache

Fixes #10964
This commit is contained in:
Paul Stack 2017-01-02 20:37:43 +00:00 committed by GitHub
parent d9088d8cc0
commit cb1acca2be
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ func resourceAwsElasticacheReplicationGroupCreate(d *schema.ResourceData, meta i
d.SetId(*resp.ReplicationGroup.ReplicationGroupId)
pending := []string{"creating", "modifying", "restoring"}
pending := []string{"creating", "modifying", "restoring", "snapshotting"}
stateConf := &resource.StateChangeConf{
Pending: pending,
Target: []string{"available"},