Skip to content

Commit 0e3ec14

Browse files
committed
ASG Min Size from 2 to 4
1 parent 361680d commit 0e3ec14

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

terraform-manifests/c13-03-autoscaling-resource.tf

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ resource "aws_autoscaling_group" "my_asg" {
33
#name_prefix = "myasg-"
44
name_prefix = "${local.name}-"
55
max_size = 10
6-
min_size = 2
7-
#min_size = 4
8-
desired_capacity = 2
9-
#desired_capacity = 4
6+
#min_size = 2
7+
min_size = 4
8+
#desired_capacity = 2
9+
desired_capacity = 4
1010
vpc_zone_identifier = module.vpc.private_subnets
1111
target_group_arns = module.alb.target_group_arns
1212
health_check_type = "EC2"

0 commit comments

Comments
 (0)