diff --git a/deploy/scripts/cdk/lib/construct/backend.ts b/deploy/scripts/cdk/lib/construct/backend.ts index f64a0f8fd..b22ba62a8 100644 --- a/deploy/scripts/cdk/lib/construct/backend.ts +++ b/deploy/scripts/cdk/lib/construct/backend.ts @@ -39,7 +39,7 @@ export class BackEndCluster extends Construct { 'BackEndTaskDef', { memoryLimitMiB: 3072, - cpu: 512, + cpu: 1024, executionRole: props.backendTaskExecutionRole, runtimePlatform:{ operatingSystemFamily: ecs.OperatingSystemFamily.LINUX, diff --git a/deploy/scripts/cdk/lib/construct/frontend.ts b/deploy/scripts/cdk/lib/construct/frontend.ts index 6ac90e5f2..8238ed135 100644 --- a/deploy/scripts/cdk/lib/construct/frontend.ts +++ b/deploy/scripts/cdk/lib/construct/frontend.ts @@ -34,7 +34,7 @@ export class FrontEndCluster extends Construct { 'FrontendTaskDef', { memoryLimitMiB: 3072, - cpu: 512, + cpu: 1024, executionRole: props.frontendTaskExecutionRole, runtimePlatform:{ operatingSystemFamily: ecs.OperatingSystemFamily.LINUX,