Skip to content

Commit

Permalink
Switch prod instances to t3.small which have more CPU
Browse files Browse the repository at this point in the history
  • Loading branch information
hellais committed Apr 19, 2024
1 parent dc0b717 commit 4b9af76
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions tf/environments/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ module "ooniapi_cluster" {
asg_max = 10
asg_desired = 4

instance_type = "t2.small"
instance_type = "t3.small"

tags = merge(
local.tags,
Expand All @@ -301,7 +301,7 @@ module "oonith_cluster" {
asg_max = 6
asg_desired = 2

instance_type = "t2.small"
instance_type = "t3.small"

tags = merge(
local.tags,
Expand Down
2 changes: 1 addition & 1 deletion tf/modules/ecs_cluster/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ variable "admin_cidr_ingress" {
}

variable "instance_type" {
default = "t2.small"
default = "t3.small"
}

variable "instance_volume_size" {
Expand Down

0 comments on commit 4b9af76

Please sign in to comment.