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
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -111,6 +111,7 @@ MIT Licensed. See [LICENSE](https://github.com/terraform-aws-modules/terraform-a
111
111
112
112
| Name | Description | Type | Default | Required |
113
113
|------|-------------|:----:|:-----:|:-----:|
114
+
| enable_cross_zone_load_balancing | Indicates whether cross zone load balancing should be enabled in application load balancers. | string | `false` | no |
114
115
| enable_deletion_protection | If true, deletion of the load balancer will be disabled via the AWS API. This will prevent Terraform from deleting the load balancer. Defaults to false. | string | `false` | no |
115
116
| enable_http2 | Indicates whether HTTP/2 is enabled in application load balancers. | string | `true` | no |
116
117
| extra_ssl_certs | A list of maps describing any extra SSL certificates to apply to the HTTPS listeners. Required key/values: certificate_arn, https_listener_index (the index of the listener within https_listeners which the cert applies toward). | list | `<list>` | no |
Copy file name to clipboardExpand all lines: variables.tf
+5Lines changed: 5 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -8,6 +8,11 @@ variable "enable_http2" {
8
8
default=true
9
9
}
10
10
11
+
variable"enable_cross_zone_load_balancing" {
12
+
description="Indicates whether cross zone load balancing should be enabled in application load balancers."
13
+
default=false
14
+
}
15
+
11
16
variable"extra_ssl_certs" {
12
17
description="A list of maps describing any extra SSL certificates to apply to the HTTPS listeners. Required key/values: certificate_arn, https_listener_index (the index of the listener within https_listeners which the cert applies toward)."
0 commit comments