provider/aws: Increase EIP update timeout (#14381)

This commit is contained in:
Radek Simko 2017-05-11 12:51:48 +02:00 committed by GitHub
parent a846b1b3b0
commit e773e59aaf
1 changed files with 1 additions and 1 deletions

View File

@ -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 {