File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -359,6 +359,8 @@ module "alb" {
359
359
port = 80
360
360
target_type = " instance"
361
361
deregistration_delay = 10
362
+ load_balancing_algorithm_type = " weighted_random"
363
+ load_balancing_anomaly_mitigation = " on"
362
364
load_balancing_cross_zone_enabled = false
363
365
364
366
health_check = {
Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ resource "aws_lb_target_group" "this" {
478
478
ip_address_type = try (each. value . ip_address_type , null )
479
479
lambda_multi_value_headers_enabled = try (each. value . lambda_multi_value_headers_enabled , null )
480
480
load_balancing_algorithm_type = try (each. value . load_balancing_algorithm_type , null )
481
+ load_balancing_anomaly_mitigation = try (each. value . load_balancing_anomaly_mitigation , null )
481
482
load_balancing_cross_zone_enabled = try (each. value . load_balancing_cross_zone_enabled , null )
482
483
name = try (each. value . name , null )
483
484
name_prefix = try (each. value . name_prefix , null )
You can’t perform that action at this time.
0 commit comments