Doc Update for ELB defaults

- Doc update to explicitly call out ELB defaults (so I don't have to look
at the source again :)
This commit is contained in:
Justin Nauman 2016-11-15 15:00:13 -06:00
parent 5eaeb0f89f
commit 75257e13ab

View File

@ -80,9 +80,9 @@ The following arguments are supported:
* `listener` - (Required) A list of listener blocks. Listeners documented below. * `listener` - (Required) A list of listener blocks. Listeners documented below.
* `health_check` - (Optional) A health_check block. Health Check documented below. * `health_check` - (Optional) A health_check block. Health Check documented below.
* `cross_zone_load_balancing` - (Optional) Enable cross-zone load balancing. Default: `true` * `cross_zone_load_balancing` - (Optional) Enable cross-zone load balancing. Default: `true`
* `idle_timeout` - (Optional) The time in seconds that the connection is allowed to be idle. Default: 60. * `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` - (Optional) Boolean to enable connection draining. Default: `false`
* `connection_draining_timeout` - (Optional) The time in seconds to allow for connections to drain. * `connection_draining_timeout` - (Optional) The time in seconds to allow for connections to drain. Default: `300`
* `tags` - (Optional) A mapping of tags to assign to the resource. * `tags` - (Optional) A mapping of tags to assign to the resource.
Exactly one of `availability_zones` or `subnets` must be specified: this Exactly one of `availability_zones` or `subnets` must be specified: this
@ -111,7 +111,7 @@ Health Check (`health_check`) supports the following:
* `healthy_threshold` - (Required) The number of checks before the instance is declared healthy. * `healthy_threshold` - (Required) The number of checks before the instance is declared healthy.
* `unhealthy_threshold` - (Required) The number of checks before the instance is declared unhealthy. * `unhealthy_threshold` - (Required) The number of checks before the instance is declared unhealthy.
* `target` - (Required) The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL * `target` - (Required) The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL
values are: values are:
* `HTTP`, `HTTPS` - PORT and PATH are required * `HTTP`, `HTTPS` - PORT and PATH are required
* `TCP`, `SSL` - PORT is required, PATH is not supported * `TCP`, `SSL` - PORT is required, PATH is not supported
* `interval` - (Required) The interval between checks. * `interval` - (Required) The interval between checks.