We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 361680d commit 0e3ec14Copy full SHA for 0e3ec14
terraform-manifests/c13-03-autoscaling-resource.tf
@@ -3,10 +3,10 @@ resource "aws_autoscaling_group" "my_asg" {
3
#name_prefix = "myasg-"
4
name_prefix = "${local.name}-"
5
max_size = 10
6
- min_size = 2
7
- #min_size = 4
8
- desired_capacity = 2
9
- #desired_capacity = 4
+ #min_size = 2
+ min_size = 4
+ #desired_capacity = 2
+ desired_capacity = 4
10
vpc_zone_identifier = module.vpc.private_subnets
11
target_group_arns = module.alb.target_group_arns
12
health_check_type = "EC2"
0 commit comments