File tree Expand file tree Collapse file tree
shared/lib/shared-constructs/lib
sticker-catalogue/infra/aws/lib Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -140,6 +140,7 @@ export class WebService extends Construct {
140140 `${ props . sharedProps . serviceName } Definition` ,
141141 {
142142 memoryLimitMiB,
143+ cpu,
143144 runtimePlatform : {
144145 cpuArchitecture : ecs . CpuArchitecture . X86_64 ,
145146 operatingSystemFamily : ecs . OperatingSystemFamily . LINUX ,
Original file line number Diff line number Diff line change @@ -89,14 +89,14 @@ export class Api extends Construct {
8989 interval : Duration . seconds ( 30 ) ,
9090 timeout : Duration . seconds ( 5 ) ,
9191 retries : 3 ,
92- startPeriod : Duration . seconds ( 60 ) ,
92+ startPeriod : Duration . seconds ( 120 ) ,
9393 } ,
9494 serviceDiscoveryNamespace : props . serviceDiscoveryNamespace ,
9595 serviceDiscoveryName : props . serviceDiscoveryName ,
9696 deployInPrivateSubnet : props . deployInPrivateSubnet ,
9797 serviceDependencies : props . serviceProps . serviceDependencies ,
9898 cpu : 1024 ,
99- memoryLimitMiB : 1024 ,
99+ memoryLimitMiB : 2048 ,
100100 } ) ;
101101
102102 props . stickerImagesBucket . grantReadWrite ( webService . taskRole ) ;
You can’t perform that action at this time.
0 commit comments