Skip to content

Commit

Permalink
Merge pull request #15293 from shuheiktgw/increase_efs_mount_target_t…
Browse files Browse the repository at this point in the history
…imeout

Increase the efs_mount_target creation timeout to 30 minutes
  • Loading branch information
anGie44 authored Sep 24, 2020
2 parents 86b567f + f9e14b9 commit 5e53f7b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/resource_aws_efs_mount_target.go
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ func resourceAwsEfsMountTargetCreate(d *schema.ResourceData, meta interface{}) e
log.Printf("[DEBUG] Current status of %q: %q", aws.StringValue(mt.MountTargetId), aws.StringValue(mt.LifeCycleState))
return mt, aws.StringValue(mt.LifeCycleState), nil
},
Timeout: 10 * time.Minute,
Timeout: 30 * time.Minute,
Delay: 2 * time.Second,
MinTimeout: 3 * time.Second,
}
Expand Down

0 comments on commit 5e53f7b

Please sign in to comment.