You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Added few variables to enable HealthCheck configuration of the ALB (#160)
* Added few variables to enable HealthCheck configuration of the ALB
* Auto Format
Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com>
Co-authored-by: nitrocode <nitrocode@users.noreply.github.com>
Copy file name to clipboardExpand all lines: README.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -200,6 +200,10 @@ Available targets:
200
200
| <aname="input_alb_ingress_authenticated_listener_arns_count"></a> [alb\_ingress\_authenticated\_listener\_arns\_count](#input\_alb\_ingress\_authenticated\_listener\_arns\_count)| The number of authenticated ARNs in `alb_ingress_authenticated_listener_arns`. This is necessary to work around a limitation in Terraform where counts cannot be computed |`number`|`0`| no |
201
201
| <aname="input_alb_ingress_authenticated_paths"></a> [alb\_ingress\_authenticated\_paths](#input\_alb\_ingress\_authenticated\_paths)| Authenticated path pattern to match (a maximum of 1 can be defined) |`list(string)`|`[]`| no |
202
202
| <aname="input_alb_ingress_enable_default_target_group"></a> [alb\_ingress\_enable\_default\_target\_group](#input\_alb\_ingress\_enable\_default\_target\_group)| If true, create a default target group for the ALB ingress |`bool`|`true`| no |
203
+
| <aname="input_alb_ingress_health_check_healthy_threshold"></a> [alb\_ingress\_health\_check\_healthy\_threshold](#input\_alb\_ingress\_health\_check\_healthy\_threshold)| The number of consecutive health checks successes required before healthy |`number`|`2`| no |
204
+
| <aname="input_alb_ingress_health_check_interval"></a> [alb\_ingress\_health\_check\_interval](#input\_alb\_ingress\_health\_check\_interval)| The duration in seconds in between health checks |`number`|`15`| no |
205
+
| <aname="input_alb_ingress_health_check_timeout"></a> [alb\_ingress\_health\_check\_timeout](#input\_alb\_ingress\_health\_check\_timeout)| The amount of time to wait in seconds before failing a health check request |`number`|`10`| no |
206
+
| <aname="input_alb_ingress_health_check_unhealthy_threshold"></a> [alb\_ingress\_health\_check\_unhealthy\_threshold](#input\_alb\_ingress\_health\_check\_unhealthy\_threshold)| The number of consecutive health check failures required before unhealthy |`number`|`2`| no |
203
207
| <aname="input_alb_ingress_healthcheck_path"></a> [alb\_ingress\_healthcheck\_path](#input\_alb\_ingress\_healthcheck\_path)| The path of the healthcheck which the ALB checks |`string`|`"/"`| no |
204
208
| <aname="input_alb_ingress_healthcheck_protocol"></a> [alb\_ingress\_healthcheck\_protocol](#input\_alb\_ingress\_healthcheck\_protocol)| The protocol to use to connect with the target. Defaults to `HTTP`. Not applicable when `target_type` is `lambda`|`string`|`"HTTP"`| no |
205
209
| <aname="input_alb_ingress_listener_authenticated_priority"></a> [alb\_ingress\_listener\_authenticated\_priority](#input\_alb\_ingress\_listener\_authenticated\_priority)| The priority for the rules with authentication, between 1 and 50000 (1 being highest priority). Must be different from `alb_ingress_listener_unauthenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`300`| no |
Copy file name to clipboardExpand all lines: docs/terraform.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,6 +45,10 @@
45
45
| <aname="input_alb_ingress_authenticated_listener_arns_count"></a> [alb\_ingress\_authenticated\_listener\_arns\_count](#input\_alb\_ingress\_authenticated\_listener\_arns\_count)| The number of authenticated ARNs in `alb_ingress_authenticated_listener_arns`. This is necessary to work around a limitation in Terraform where counts cannot be computed |`number`|`0`| no |
46
46
| <aname="input_alb_ingress_authenticated_paths"></a> [alb\_ingress\_authenticated\_paths](#input\_alb\_ingress\_authenticated\_paths)| Authenticated path pattern to match (a maximum of 1 can be defined) |`list(string)`|`[]`| no |
47
47
| <aname="input_alb_ingress_enable_default_target_group"></a> [alb\_ingress\_enable\_default\_target\_group](#input\_alb\_ingress\_enable\_default\_target\_group)| If true, create a default target group for the ALB ingress |`bool`|`true`| no |
48
+
| <aname="input_alb_ingress_health_check_healthy_threshold"></a> [alb\_ingress\_health\_check\_healthy\_threshold](#input\_alb\_ingress\_health\_check\_healthy\_threshold)| The number of consecutive health checks successes required before healthy |`number`|`2`| no |
49
+
| <aname="input_alb_ingress_health_check_interval"></a> [alb\_ingress\_health\_check\_interval](#input\_alb\_ingress\_health\_check\_interval)| The duration in seconds in between health checks |`number`|`15`| no |
50
+
| <aname="input_alb_ingress_health_check_timeout"></a> [alb\_ingress\_health\_check\_timeout](#input\_alb\_ingress\_health\_check\_timeout)| The amount of time to wait in seconds before failing a health check request |`number`|`10`| no |
51
+
| <aname="input_alb_ingress_health_check_unhealthy_threshold"></a> [alb\_ingress\_health\_check\_unhealthy\_threshold](#input\_alb\_ingress\_health\_check\_unhealthy\_threshold)| The number of consecutive health check failures required before unhealthy |`number`|`2`| no |
48
52
| <aname="input_alb_ingress_healthcheck_path"></a> [alb\_ingress\_healthcheck\_path](#input\_alb\_ingress\_healthcheck\_path)| The path of the healthcheck which the ALB checks |`string`|`"/"`| no |
49
53
| <aname="input_alb_ingress_healthcheck_protocol"></a> [alb\_ingress\_healthcheck\_protocol](#input\_alb\_ingress\_healthcheck\_protocol)| The protocol to use to connect with the target. Defaults to `HTTP`. Not applicable when `target_type` is `lambda`|`string`|`"HTTP"`| no |
50
54
| <aname="input_alb_ingress_listener_authenticated_priority"></a> [alb\_ingress\_listener\_authenticated\_priority](#input\_alb\_ingress\_listener\_authenticated\_priority)| The priority for the rules with authentication, between 1 and 50000 (1 being highest priority). Must be different from `alb_ingress_listener_unauthenticated_priority` since a listener can't have multiple rules with the same priority |`number`|`300`| no |
0 commit comments