Skip to content

Commit c19de34

Browse files
committed
fixup! Added support form minimum_load_balancer_capacity.
1 parent a329f5e commit c19de34

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,7 @@ No modules.
414414
| <a name="input_ipam_pools"></a> [ipam\_pools](#input\_ipam\_pools) | The IPAM pools to use with the load balancer | `map(string)` | `{}` | no |
415415
| <a name="input_listeners"></a> [listeners](#input\_listeners) | Map of listener configurations to create | `any` | `{}` | no |
416416
| <a name="input_load_balancer_type"></a> [load\_balancer\_type](#input\_load\_balancer\_type) | The type of load balancer to create. Possible values are `application`, `gateway`, or `network`. The default value is `application` | `string` | `"application"` | no |
417-
| <a name="input_minimum_load_balancer_capacity"></a> [minimum_load_balancer_capacity](#input\_minimum\_load\_balancer\_capacity) | Minimum capacity for a load balancer. Only valid for Load Balancers of type `application` or `network`. | `number` | `null` | no |
417+
| <a name="input_minimum_load_balancer_capacity"></a> [minimum\_load\_balancer\_capacity](#input\_minimum\_load\_balancer\_capacity) | Minimum capacity for a load balancer. Only valid for Load Balancers of type `application` or `network` | `number` | `null` | no |
418418
| <a name="input_name"></a> [name](#input\_name) | The name of the LB. This name must be unique within your AWS account, can have a maximum of 32 characters, must contain only alphanumeric characters or hyphens, and must not begin or end with a hyphen | `string` | `null` | no |
419419
| <a name="input_name_prefix"></a> [name\_prefix](#input\_name\_prefix) | Creates a unique name beginning with the specified prefix. Conflicts with `name` | `string` | `null` | no |
420420
| <a name="input_preserve_host_header"></a> [preserve\_host\_header](#input\_preserve\_host\_header) | Indicates whether the Application Load Balancer should preserve the Host header in the HTTP request and send it to the target without any change. Defaults to `false` | `bool` | `null` | no |

wrappers/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ module "wrapper" {
3030
ipam_pools = try(each.value.ipam_pools, var.defaults.ipam_pools, {})
3131
listeners = try(each.value.listeners, var.defaults.listeners, {})
3232
load_balancer_type = try(each.value.load_balancer_type, var.defaults.load_balancer_type, "application")
33+
minimum_load_balancer_capacity = try(each.value.minimum_load_balancer_capacity, var.defaults.minimum_load_balancer_capacity, null)
3334
name = try(each.value.name, var.defaults.name, null)
3435
name_prefix = try(each.value.name_prefix, var.defaults.name_prefix, null)
35-
minimum_load_balancer_capacity = try(each.value.minimum_load_balancer_capacity, var.defaults.minimum_load_balancer_capacity, null)
3636
preserve_host_header = try(each.value.preserve_host_header, var.defaults.preserve_host_header, null)
3737
putin_khuylo = try(each.value.putin_khuylo, var.defaults.putin_khuylo, true)
3838
route53_records = try(each.value.route53_records, var.defaults.route53_records, {})

0 commit comments

Comments
 (0)