File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
.tools/test/stacks/plugin/typescript Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,7 @@ class PluginStack extends cdk.Stack {
4444 // https://docs.aws.amazon.com/batch/latest/APIReference/API_ResourceRequirement.html
4545 this . batchMemory = acctConfig [ `${ toolName } ` ] ?. memory ?? "16384" ; // MiB
4646 this . batchVcpus = acctConfig [ `${ toolName } ` ] ?. vcpus ?? "4" ; // CPUs
47- this . batchStorage = acctConfig [ `${ toolName } ` ] ?. storage ?? 30 ; // GiB
47+ this . batchStorage = acctConfig [ `${ toolName } ` ] ?. storage ?? 20 ; // GiB
4848 }
4949
5050 const [ jobDefinition , jobQueue ] = this . initBatchFargate ( ) ;
@@ -141,7 +141,7 @@ class PluginStack extends cdk.Stack {
141141 } ,
142142 ] ,
143143 ephemeralStorage : {
144- sizeInGiB : + this . batchStorage ,
144+ sizeInGib : this . batchStorage ,
145145 } ,
146146 environment : variableConfigJson ,
147147 } ,
@@ -348,7 +348,6 @@ new PluginStack(
348348 account : process . env . CDK_DEFAULT_ACCOUNT ,
349349 region : process . env . CDK_DEFAULT_REGION ,
350350 } ,
351- terminationProtection : true
352351 } ,
353352) ;
354353
You can’t perform that action at this time.
0 commit comments