Skip to content

Commit

Permalink
Merge pull request #652 from umccr/bugfix/set-cttsov2-analysis-storag…
Browse files Browse the repository at this point in the history
…e-size
  • Loading branch information
alexiswl authored Nov 4, 2024
2 parents 12a49f1 + 0c6e626 commit e8e5c89
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ interface Cttsov2Icav2PipelineManagerConstructProps {
}

export class Cttsov2Icav2PipelineManagerConstruct extends Construct {
// Set the analysis storage size for these runs to LARGE
private readonly analysisStorageSize = 'LARGE';

constructor(scope: Construct, id: string, props: Cttsov2Icav2PipelineManagerConstructProps) {
super(scope, id);

Expand Down Expand Up @@ -220,6 +223,8 @@ export class Cttsov2Icav2PipelineManagerConstruct extends Construct {
workflowName: props.workflowType,
workflowVersion: props.workflowVersion,
serviceVersion: props.serviceVersion,
/* Miscell configurations */
analysisStorageSize: this.analysisStorageSize,
});

// Create statemachine for handling any state changes of the pipeline
Expand Down

0 comments on commit e8e5c89

Please sign in to comment.