Skip to content

Commit f07d290

Browse files
committed
chore: reduce CPU and memory allocations for API and consumer tasks for reduced costs
1 parent 42e75dd commit f07d290

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

deployments/terraform/variables.tf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,13 +78,13 @@ variable "image_tag" {
7878
variable "api_cpu" {
7979
description = "API task CPU"
8080
type = string
81-
default = "512"
81+
default = "256"
8282
}
8383

8484
variable "api_memory" {
8585
description = "API task memory"
8686
type = string
87-
default = "1024"
87+
default = "512"
8888
}
8989

9090
variable "api_desired_count" {
@@ -108,13 +108,13 @@ variable "api_max_capacity" {
108108
variable "consumer_cpu" {
109109
description = "Consumer task CPU"
110110
type = string
111-
default = "1024"
111+
default = "256"
112112
}
113113

114114
variable "consumer_memory" {
115115
description = "Consumer task memory"
116116
type = string
117-
default = "2048"
117+
default = "512"
118118
}
119119

120120
variable "consumer_desired_count" {

0 commit comments

Comments
 (0)