From 5b9c4f494ce77a50c41f27b46ea2abbc528d20e4 Mon Sep 17 00:00:00 2001 From: oycyc Date: Thu, 7 Nov 2024 13:08:34 -0500 Subject: [PATCH] docs: update readme after redirect action addition --- docs/terraform.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/terraform.md b/docs/terraform.md index dffb11b..f233665 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -94,7 +94,7 @@ | [listener\_additional\_tags](#input\_listener\_additional\_tags) | The additional tags to apply to all listeners | `map(string)` | `{}` | no | | [listener\_http\_fixed\_response](#input\_listener\_http\_fixed\_response) | Have the HTTP listener return a fixed response for the default action. |
object({
content_type = string
message_body = string
status_code = string
})
| `null` | no | | [listener\_https\_fixed\_response](#input\_listener\_https\_fixed\_response) | Have the HTTPS listener return a fixed response for the default action. |
object({
content_type = string
message_body = string
status_code = string
})
| `null` | no | -| [listener\_https\_redirect](#input\_listener\_https\_redirect) | Have the HTTPS listener return a redirect response for the default action. |
object({
host = optional(string)
path = optional(string)
port = optional(string)
protocol = optional(string)
query = optional(string)
status_code = optional(string)
})
| `null` | no | +| [listener\_https\_redirect](#input\_listener\_https\_redirect) | Have the HTTPS listener return a redirect response for the default action. |
object({
host = optional(string)
path = optional(string)
port = optional(string)
protocol = optional(string)
query = optional(string)
status_code = string
})
|
{
"host": null,
"path": null,
"port": null,
"protocol": null,
"query": null,
"status_code": "HTTP_301"
}
| no | | [load\_balancer\_name](#input\_load\_balancer\_name) | The name for the default load balancer, uses a module label name if left empty | `string` | `""` | no | | [load\_balancer\_name\_max\_length](#input\_load\_balancer\_name\_max\_length) | The max length of characters for the load balancer. | `number` | `32` | no | | [load\_balancing\_algorithm\_type](#input\_load\_balancing\_algorithm\_type) | Determines how the load balancer selects targets when routing requests. Only applicable for Application Load Balancer Target Groups | `string` | `"round_robin"` | no |