From cb1acca2be28cddee22387663f3d4f5e7a75f02b Mon Sep 17 00:00:00 2001 From: Paul Stack Date: Mon, 2 Jan 2017 20:37:43 +0000 Subject: [PATCH] provider/aws: Add snapshotting to the list of pending state for (#10965) elasticache Fixes #10964 --- .../providers/aws/resource_aws_elasticache_replication_group.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/builtin/providers/aws/resource_aws_elasticache_replication_group.go b/builtin/providers/aws/resource_aws_elasticache_replication_group.go index 8f85dac29..ac8b1af75 100644 --- a/builtin/providers/aws/resource_aws_elasticache_replication_group.go +++ b/builtin/providers/aws/resource_aws_elasticache_replication_group.go @@ -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"},