We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2ca5859 commit 9cee2faCopy full SHA for 9cee2fa
terraform/ecs.tf
@@ -8,7 +8,7 @@ module "ecs_cluster" {
8
default_instance_type = "t3a.small"
9
instance_types = local.ecs.instance_types
10
11
- min_size = 2
+ min_size = 1
12
max_size = 3
13
minimum_scaling_step_size = 1
14
maximum_scaling_step_size = 1
terraform/service_api.tf
@@ -7,7 +7,7 @@ module "ecs_api" {
7
name = "api-${var.env}"
cluster_name = module.ecs_cluster.cluster_name
- min_capacity = 2
+ min_capacity = 1
max_capacity = 4
image_repo = local.images.api.image
0 commit comments