modify cpu

This commit is contained in:
nsxshota 2023-11-23 10:34:55 +09:00
commit d4a356a47a
2 changed files with 2 additions and 2 deletions

View file

@ -39,7 +39,7 @@ export class BackEndCluster extends Construct {
'BackEndTaskDef',
{
memoryLimitMiB: 3072,
cpu: 512,
cpu: 1024,
executionRole: props.backendTaskExecutionRole,
runtimePlatform:{
operatingSystemFamily: ecs.OperatingSystemFamily.LINUX,

View file

@ -34,7 +34,7 @@ export class FrontEndCluster extends Construct {
'FrontendTaskDef',
{
memoryLimitMiB: 3072,
cpu: 512,
cpu: 1024,
executionRole: props.frontendTaskExecutionRole,
runtimePlatform:{
operatingSystemFamily: ecs.OperatingSystemFamily.LINUX,