Skip to content

Commit 1e7b27c

Browse files
committed
fix
1 parent 5eb61a6 commit 1e7b27c

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.tools/test/stacks/plugin/typescript/plugin_stack.ts

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)