Skip to content

Commit

Permalink
Delius core resize ecs tasks for PWM (#5478)
Browse files Browse the repository at this point in the history
* pwm resize

* Update locals_test.tf
  • Loading branch information
georgepstaylor authored and matt-heery committed Mar 28, 2024
1 parent 1e6ca81 commit 2f25a09
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
6 changes: 4 additions & 2 deletions terraform/environments/delius-core/locals_development.tf
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,10 @@ locals {
}

pwm = {
image_tag = "8250538047-1"
container_port = 8080
image_tag = "8250538047-1"
container_port = 8080
container_cpu = 256
container_memory = 512
}

pdf_creation = {
Expand Down
6 changes: 4 additions & 2 deletions terraform/environments/delius-core/locals_test.tf
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,10 @@ locals {
}

pwm = {
image_tag = "8250538047-1"
container_port = 8080
image_tag = "8250538047-1"
container_port = 8080
container_cpu = 512
container_memory = 1024
}

pdf_creation = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ module "pwm" {
target_group_protocol_version = "HTTP1"
health_check_grace_period_seconds = 10

container_cpu = 1024
container_memory = 2048
container_cpu = var.delius_microservice_configs.pwm.container_cpu
container_memory = var.delius_microservice_configs.pwm.container_memory
deployment_maximum_percent = 200
deployment_minimum_healthy_percent = 100

Expand Down

0 comments on commit 2f25a09

Please sign in to comment.