diff --git a/builtin/providers/aws/resource_aws_elb.go b/builtin/providers/aws/resource_aws_elb.go index 954db8cc8..8f4c613cd 100644 --- a/builtin/providers/aws/resource_aws_elb.go +++ b/builtin/providers/aws/resource_aws_elb.go @@ -84,7 +84,7 @@ func resourceAwsElb() *schema.Resource { "idle_timeout": &schema.Schema{ Type: schema.TypeInt, Optional: true, - Default: 30, + Default: 60, }, "connection_draining": &schema.Schema{ diff --git a/website/source/docs/providers/aws/r/elb.html.markdown b/website/source/docs/providers/aws/r/elb.html.markdown index ff5dd2d58..491cad074 100644 --- a/website/source/docs/providers/aws/r/elb.html.markdown +++ b/website/source/docs/providers/aws/r/elb.html.markdown @@ -62,7 +62,7 @@ The following arguments are supported: * `listener` - (Required) A list of listener blocks. Listeners documented below. * `health_check` - (Optional) A health_check block. Health Check documented below. * `cross_zone_load_balancing` - (Optional) Enable cross-zone load balancing. -* `idle_timeout` - (Optional) The time in seconds that the connection is allowed to be idle. Default: 300. +* `idle_timeout` - (Optional) The time in seconds that the connection is allowed to be idle. Default: 60. * `connection_draining` - (Optional) Boolean to enable connection draining. * `connection_draining_timeout` - (Optional) The time in seconds to allow for connections to drain.