Skip to content

Commit

Permalink
Add LargeJobQueue
Browse files Browse the repository at this point in the history
  • Loading branch information
ingalls committed Jun 5, 2024
1 parent 629f48b commit 75a79f7
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions cloudformation/task.template.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,18 @@ export default {
Path: '/service-role/'
}
},
BatchLargeJobQueue: {
Type: 'AWS::Batch::JobQueue',
Properties: {
ComputeEnvironmentOrder: [{
Order: 1,
ComputeEnvironment: cf.ref('BatchLargeComputeEnvironment')
}],
State: 'ENABLED',
Priority: 1,
JobQueueName: 'large'
}
},
BatchJobQueue: {
Type: 'AWS::Batch::JobQueue',
Properties: {
Expand Down

0 comments on commit 75a79f7

Please sign in to comment.