Merge pull request #1646 from pmoust/elb-default-idle-timeout

providers/aws: aws_elb incr. idle_timeout to 60s
This commit is contained in:
Mitchell Hashimoto 2015-04-23 12:27:46 +02:00
commit a4cfa2ef0c
2 changed files with 2 additions and 2 deletions

View File

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

View File

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