A
Size: a a a
A
НС
НС
A
A
AR
AR
🌠
РР
DK
🌠
VT
РР
🌠
VT
VT
A
🌠
resource "aws_autoscaling_policy" "target-tracking-memory" {
name = "${module.common.cluster_name}-asg-policy-memory"
adjustment_type = "ChangeInCapacity"
autoscaling_group_name = aws_autoscaling_group.worker.name
estimated_instance_warmup = 300
policy_type = "TargetTrackingScaling"
target_tracking_configuration {
customized_metric_specification {
metric_dimension {
name = AutoScalingGroupName
value = aws_autoscaling_group.worker.name
}
metric_name = "MemoryUtilization"
namespace = "default"
statistic = "Average"
unit = "Percent"
}
target_value = 70
}
}
VT
terraform fmt
?VT