diff --git a/frontend/.happy/terraform/envs/dev/main.tf b/frontend/.happy/terraform/envs/dev/main.tf index 132bf7b2b..31110ac53 100644 --- a/frontend/.happy/terraform/envs/dev/main.tf +++ b/frontend/.happy/terraform/envs/dev/main.tf @@ -26,8 +26,9 @@ module "stack" { priority = 0 service_type = "EXTERNAL" success_codes = "200-499" - memory = "1500Mi" - cpu = "1500m" + memory = "2000Mi" + cpu = "2000m" + initial_delay_seconds = 100 } } create_dashboard = false diff --git a/frontend/.happy/terraform/envs/prod/main.tf b/frontend/.happy/terraform/envs/prod/main.tf index aa3ca81ba..37d4627a6 100644 --- a/frontend/.happy/terraform/envs/prod/main.tf +++ b/frontend/.happy/terraform/envs/prod/main.tf @@ -18,8 +18,9 @@ module "stack" { priority = 0 service_type = "EXTERNAL" success_codes = "200-499" - memory = "1500Mi" - cpu = "1500m" + memory = "2000Mi" + cpu = "2000m" + initial_delay_seconds = 100 } } create_dashboard = false diff --git a/frontend/.happy/terraform/envs/staging/main.tf b/frontend/.happy/terraform/envs/staging/main.tf index 5150c6511..b2483fe4d 100644 --- a/frontend/.happy/terraform/envs/staging/main.tf +++ b/frontend/.happy/terraform/envs/staging/main.tf @@ -26,8 +26,9 @@ module "stack" { priority = 0 service_type = "EXTERNAL" success_codes = "200-499" - memory = "1500Mi" - cpu = "1500m" + memory = "2000Mi" + cpu = "2000m" + initial_delay_seconds = 100 } } create_dashboard = false