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" {
359359 port = 80
360360 target_type = " instance"
361361 deregistration_delay = 10
362+ load_balancing_algorithm_type = " weighted_random"
363+ load_balancing_anomaly_mitigation = " on"
362364 load_balancing_cross_zone_enabled = false
363365
364366 health_check = {
Original file line number Diff line number Diff line change @@ -478,6 +478,7 @@ resource "aws_lb_target_group" "this" {
478478 ip_address_type = try (each. value . ip_address_type , null )
479479 lambda_multi_value_headers_enabled = try (each. value . lambda_multi_value_headers_enabled , null )
480480 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 )
481482 load_balancing_cross_zone_enabled = try (each. value . load_balancing_cross_zone_enabled , null )
482483 name = try (each. value . name , null )
483484 name_prefix = try (each. value . name_prefix , null )
You can’t perform that action at this time.
0 commit comments