From bd25d77615aedfc43db46e6d0e4783b2fd1c81e8 Mon Sep 17 00:00:00 2001 From: Anastas Dancha Date: Fri, 19 Aug 2016 11:12:56 -0400 Subject: [PATCH] health_check's target explained --- website/source/docs/providers/aws/r/elb.html.markdown | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/website/source/docs/providers/aws/r/elb.html.markdown b/website/source/docs/providers/aws/r/elb.html.markdown index 2504d803f..033b2a621 100644 --- a/website/source/docs/providers/aws/r/elb.html.markdown +++ b/website/source/docs/providers/aws/r/elb.html.markdown @@ -109,7 +109,10 @@ Health Check (`health_check`) supports the following: * `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. -* `target` - (Required) The target of the check. +* `target` - (Required) The target of the check. Valid pattern is "${PROTOCOL}:${PORT}${PATH}", where PROTOCOL + values are: + * `HTTP`, `HTTPS` - PORT and PATH are required + * `TCP`, `SSL` - PORT is required, PATH is not supported * `interval` - (Required) The interval between checks. * `timeout` - (Required) The length of time before the check times out.