Skip to content

Commit

Permalink
provider/aws: Increase EIP update timeout (#14381)
Browse files Browse the repository at this point in the history
  • Loading branch information
radeksimko authored May 11, 2017
1 parent a846b1b commit e773e59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/resource_aws_eip.go
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ func resourceAwsEipUpdate(d *schema.ResourceData, meta interface{}) error {

log.Printf("[DEBUG] EIP associate configuration: %s (domain: %s)", assocOpts, domain)

err := resource.Retry(1*time.Minute, func() *resource.RetryError {
err := resource.Retry(5*time.Minute, func() *resource.RetryError {
_, err := ec2conn.AssociateAddress(assocOpts)
if err != nil {
if awsErr, ok := err.(awserr.Error); ok {
Expand Down

0 comments on commit e773e59

Please sign in to comment.