Skip to content

Commit

Permalink
provider/aws: Bump rds_cluster timeout to 15 mins (#7604)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored and stack72 committed Jul 18, 2016
1 parent a04e336 commit 37b6ab4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/providers/aws/resource_aws_rds_cluster.go
Expand Up @@ -251,7 +251,7 @@ func resourceAwsRDSClusterCreate(d *schema.ResourceData, meta interface{}) error
Pending: []string{"creating", "backing-up", "modifying"},
Target: []string{"available"},
Refresh: resourceAwsRDSClusterStateRefreshFunc(d, meta),
Timeout: 5 * time.Minute,
Timeout: 15 * time.Minute,
MinTimeout: 3 * time.Second,
Delay: 30 * time.Second, // Wait 30 secs before starting
}
Expand Down Expand Up @@ -345,7 +345,7 @@ func resourceAwsRDSClusterCreate(d *schema.ResourceData, meta interface{}) error
Pending: []string{"creating", "backing-up", "modifying"},
Target: []string{"available"},
Refresh: resourceAwsRDSClusterStateRefreshFunc(d, meta),
Timeout: 5 * time.Minute,
Timeout: 15 * time.Minute,
MinTimeout: 3 * time.Second,
}

Expand Down Expand Up @@ -509,7 +509,7 @@ func resourceAwsRDSClusterDelete(d *schema.ResourceData, meta interface{}) error
Pending: []string{"available", "deleting", "backing-up", "modifying"},
Target: []string{"destroyed"},
Refresh: resourceAwsRDSClusterStateRefreshFunc(d, meta),
Timeout: 5 * time.Minute,
Timeout: 15 * time.Minute,
MinTimeout: 3 * time.Second,
}

Expand Down

0 comments on commit 37b6ab4

Please sign in to comment.